aboutsummaryrefslogtreecommitdiffstats
path: root/src/renderer/WindModifiers.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-07-18 00:03:57 +0300
committerSergeanur <s.anureev@yandex.ua>2021-07-18 00:03:57 +0300
commitc937bdbfea8f522d14d7a41f24372bddf5bdafcc (patch)
treeeb8f97f6cf9fac31d7ab90388af232d51cc9c137 /src/renderer/WindModifiers.h
parentc8cb1ed013a880a49f83859757af942ca8bbac19 (diff)
render -> renderer (original name)
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);
+};