diff options
Diffstat (limited to 'src/render/WindModifiers.h')
-rw-r--r-- | src/render/WindModifiers.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/render/WindModifiers.h b/src/render/WindModifiers.h new file mode 100644 index 00000000..7c2e57bd --- /dev/null +++ b/src/render/WindModifiers.h @@ -0,0 +1,11 @@ +#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); +}; |