rayzor

view src/modeller.h @ 9:70e332156d02

moving along
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 10 Apr 2014 02:31:31 +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_