diff options
Diffstat (limited to 'src/simulation/tools/SimTool.h')
| -rw-r--r-- | src/simulation/tools/SimTool.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/simulation/tools/SimTool.h b/src/simulation/tools/SimTool.h new file mode 100644 index 0000000..c32ba5b --- /dev/null +++ b/src/simulation/tools/SimTool.h @@ -0,0 +1,23 @@ +#ifndef SIMTOOL_H +#define SIMTOOL_H + +#include "simulation/Simulation.h" +#include "graphics/Renderer.h" +#include "simulation/Elements.h" + +class Simulation; +struct Particle; +class SimTool +{ +public: + char *Identifier; + char *Name; + pixel Colour; + char *Description; + + SimTool(); + virtual ~SimTool() {} + virtual int Perform(Simulation * sim, Particle * cpart, int x, int y, float strength) { return 0; } +}; + +#endif
\ No newline at end of file |
