aboutsummaryrefslogtreecommitdiff
path: root/Simulation/Zapper.hpp
blob: e71ff8204cf7e3dac25d7b58777c427b382e290b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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__