summaryrefslogtreecommitdiffhomepage
path: root/Static.h
diff options
context:
space:
mode:
Diffstat (limited to 'Static.h')
-rw-r--r--Static.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Static.h b/Static.h
new file mode 100644
index 0000000..a4e7489
--- /dev/null
+++ b/Static.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <raylib.h>
+
+#include "Behaviour.h"
+#include "Generator.h"
+
+
+struct Static : virtual public Behaviour
+{
+ void update(float dt, Vector2& position, Generator& generator) override;
+};