KlassischeKeplerKriege/game/renderer_polygon_3d/renderer_polygon_3d.hpp

29 lines
579 B
C++

#include "renderer.hpp"
#include "glclasses.hpp"
#include "game.hpp"
#include "state/trace.hpp"
#include "state/object.hpp"
#include "state/missile.hpp"
#include "state/player.hpp"
#include "state/planet.hpp"
#include "state/ship.hpp"
#include "state/explosion.hpp"
class PolygonModel;
namespace endofthejedi {
class RendererPolygon3d : public Renderer {
private:
protected:
public:
void setup();
void render(const game::State *state) override;
private:
std::vector<PolygonModel*> m_models;
};
}