rayzor

view src/renderer.h @ 16:4d87b0aafbb0

forgot to add the redblack tree
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 13 Apr 2014 09:54:51 +0300
parents a9a948809c6f
children 79609d482762
line source
1 #ifndef RENDERER_H_
2 #define RENDERER_H_
4 #include "screen.h"
6 struct RendererImpl;
8 class Renderer : public Screen {
9 private:
10 RendererImpl *rend;
12 public:
13 Renderer();
15 bool init();
16 void shutdown();
18 void draw() const;
20 void handle_keyboard(int key, bool press);
22 void message(MsgAtom msg);
23 };
25 #endif // RENDERER_H_