implemented dummy 3d class.

This commit is contained in:
Andreas Ortmann 2016-09-28 11:42:50 +02:00
parent c8288d7a25
commit 7d8585c5d9
2 changed files with 3 additions and 2 deletions

View file

@ -19,8 +19,8 @@
class GameWindow : public endofthejedi::GLWindow {
private:
Game* m_game;
endofthejedi::RendererPolygon2d m_renderer;
//endofthejedi::RendererPolygon3d m_renderer;
//endofthejedi::RendererPolygon2d m_renderer;
endofthejedi::RendererPolygon3d m_renderer;
//endofthejedi::RendererRayTracer m_renderer;
protected:

View file

@ -19,6 +19,7 @@ namespace endofthejedi {
private:
protected:
public:
virtual void setup() { }
virtual void render(const game::State *state) = 0;
};