17 lines
320 B
C++
17 lines
320 B
C++
#include "renderer_polygon_3d.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
namespace endofthejedi {
|
|
void RendererPolygon3d::setup()
|
|
{
|
|
std::cout<<"setup 3d" << std::endl;
|
|
}
|
|
|
|
void RendererPolygon3d::render(const game::State *state)
|
|
{
|
|
(void) state;
|
|
|
|
//std::cout<<"render 3d" << std::endl;
|
|
}
|
|
}
|