From 17909d029c6a8872b2fddf4e171d7925bbbe9c5c Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 19:27:35 +0100 Subject: Initial commit --- Simulation/Zapper.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Simulation/Zapper.hpp (limited to 'Simulation/Zapper.hpp') 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__ -- cgit v1.2.1