summaryrefslogtreecommitdiffhomepage
path: root/Static.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Static.cpp')
-rw-r--r--Static.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Static.cpp b/Static.cpp
new file mode 100644
index 0000000..28cadda
--- /dev/null
+++ b/Static.cpp
@@ -0,0 +1,14 @@
+#include "Static.h"
+
+#include <raylib.h>
+
+#include "Generator.h"
+
+
+void
+Static::update(const float dt, Vector2& position, Generator& generator)
+{
+ (void) dt;
+ (void) position;
+ (void) generator;
+}