]> git.tdb.fi Git - r2c2.git/blob - source/engineer/trainproperties.h
Add train properties dialog (unfinished)
[r2c2.git] / source / engineer / trainproperties.h
1 #ifndef TRAINPROPERTIES_H_
2 #define TRAINPROPERTIES_H_
3
4 #include <msp/gltk/panel.h>
5
6 class TrainProperties: public Msp::GLtk::Panel
7 {
8 public:
9         TrainProperties(Msp::GLtk::Resources &, Train &);
10 private:
11         Train &train;
12         Msp::GLtk::Entry *ent_id;
13         Msp::GLtk::Entry *ent_name;
14 };
15
16 #endif