KlassischeKeplerKriege/game/renderer.hpp
2016-09-28 07:03:29 +02:00

19 lines
234 B
C++

#pragma once
#include <math.h>
#include <epoxy/gl.h>
#include <epoxy/glx.h>
#include "game.hpp"
namespace endofthejedi {
class Renderer {
private:
protected:
public:
virtual void render(const game::State *state);
};
}