diff options
Diffstat (limited to 'Static.cpp')
-rw-r--r-- | Static.cpp | 14 |
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; +} |