1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-13 12:28:30 +00:00
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);
};