1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 09:37:05 +00:00
re3/src/render/WindModifiers.h

12 lines
226 B
C
Raw Normal View History

2020-05-19 18:56:42 +00:00
#pragma once
class CWindModifiers
{
2020-08-05 02:11:42 +00:00
CVector m_pos;
int32 m_type;
2020-05-19 18:56:42 +00:00
public:
2020-08-05 02:11:42 +00:00
static int32 Number;
static void RegisterOne(CVector pos, int32 windSourceType);
static bool FindWindModifier(CVector pos, float *x, float *y);
2020-05-19 18:56:42 +00:00
};