rayzor

view src/renderer.h @ 9:70e332156d02

moving along
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 10 Apr 2014 02:31:31 +0300
parents
children a9a948809c6f
line source
1 #ifndef RENDERER_H_
2 #define RENDERER_H_
4 #include "screen.h"
6 class Renderer : public Screen {
7 public:
8 Renderer();
10 void draw() const;
11 };
13 #endif // RENDERER_H_