]> git.tdb.fi Git - r2c2.git/blob - source/designer/elevatetool.h
Don't crash if a train has no router
[r2c2.git] / source / designer / elevatetool.h
1 #ifndef ELEVATETOOL_H_
2 #define ELEVATETOOL_H_
3
4 #include "manipulator.h"
5
6 class ElevateTool: public Manipulator
7 {
8 private:
9         float origin;
10
11 public:
12         ElevateTool(Designer &, Msp::Input::Keyboard &, Msp::Input::Mouse &, const std::set<R2C2::Object *> &);
13
14         virtual void axis_motion(unsigned, float, float);
15 };
16
17 #endif