diff options
Diffstat (limited to 'src/simulation/tools/SimTool.h')
| -rw-r--r-- | src/simulation/tools/SimTool.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simulation/tools/SimTool.h b/src/simulation/tools/SimTool.h index c5a5cb1..17db8f0 100644 --- a/src/simulation/tools/SimTool.h +++ b/src/simulation/tools/SimTool.h @@ -18,6 +18,8 @@ public: SimTool(); virtual ~SimTool() {} virtual int Perform(Simulation * sim, Particle * cpart, int x, int y, float strength) { return 0; } + virtual int Start(Simulation * sim, Particle * cpart, int x, int y) { return 0; } + virtual int Click(Simulation * sim, Particle * cpart, int x, int y) { return 0; } }; #endif |
