rayzor

view src/modeller.h @ 13:964f8ea5f095

missed quite a lot of things in my last commit apparently
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 12 Apr 2014 23:37:55 +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_