1
0
mirror of https://github.com/td512/re3.git synced 2026-03-03 03:47:42 +00:00
Files
td512.re3/src/render/WindModifiers.h
2020-08-09 12:32:30 -07:00

12 lines
226 B
C++

#pragma once
class CWindModifiers
{
CVector m_pos;
int32 m_type;
public:
static int32 Number;
static void RegisterOne(CVector pos, int32 windSourceType);
static bool FindWindModifier(CVector pos, float *x, float *y);
};