mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-02 20:35:41 +00:00
11 lines
226 B
C++
11 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);
|
|
};
|