rayzor

view src/modeller.h @ 20:6b11a3f8706e

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 15 Apr 2014 01:36:03 +0300
parents
children
line source
1 #ifndef MODELLER_H_
2 #define MODELLER_H_
4 #include "screen.h"
6 struct ModellerImpl;
8 class Modeller : public Screen {
9 private:
10 ModellerImpl *mod;
12 public:
13 Modeller();
14 ~Modeller();
16 bool init();
17 void shutdown();
19 void draw() const;
21 void handle_keyboard(int key, bool press);
22 void handle_mbutton(int bn, bool press, int x, int y);
23 void handle_mmotion(int x, int y);
24 };
26 #endif // MODELLER_H_