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