aboutsummaryrefslogtreecommitdiff
path: root/Simulation/Zapper.hpp
diff options
context:
space:
mode:
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__