diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 19:27:35 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 19:27:49 +0100 |
commit | 17909d029c6a8872b2fddf4e171d7925bbbe9c5c (patch) | |
tree | cbb08af84cd68d24acc362d593a2048b0fa79689 /Simulation/Zapper.hpp |
Diffstat (limited to 'Simulation/Zapper.hpp')
-rw-r--r-- | Simulation/Zapper.hpp | 14 |
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__ |