#include "renderer_polygon_3d.hpp" #include 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; } }