26 lines
485 B
C++
26 lines
485 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"
|
||
|
|
||
|
namespace endofthejedi {
|
||
|
|
||
|
class RendererPolygon3d : Renderer {
|
||
|
private:
|
||
|
protected:
|
||
|
public:
|
||
|
void setup();
|
||
|
void render(const game::State *state) override;
|
||
|
};
|
||
|
|
||
|
}
|