aboutsummaryrefslogtreecommitdiff
path: root/Simulation/Zapper.hpp
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 19:27:35 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 19:27:49 +0100
commit17909d029c6a8872b2fddf4e171d7925bbbe9c5c (patch)
treecbb08af84cd68d24acc362d593a2048b0fa79689 /Simulation/Zapper.hpp
Initial commitHEADmaster
Diffstat (limited to 'Simulation/Zapper.hpp')
-rw-r--r--Simulation/Zapper.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Simulation/Zapper.hpp b/Simulation/Zapper.hpp
new file mode 100644
index 0000000..e71ff82
--- /dev/null
+++ b/Simulation/Zapper.hpp
@@ -0,0 +1,14 @@
+#ifndef __ZAPPER_HPP__
+#define __ZAPPER_HPP__
+
+#include "Entity.hpp"
+
+class Zapper : public Entity
+{
+public:
+ void startup(SimBase *sim);
+ void update();
+ void draw();
+};
+
+#endif // __ZAPPER_HPP__