make include headers only
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
#include "Renderer.h"
|
||||
|
||||
#include "pch.hpp"
|
||||
|
||||
namespace Archimedes {
|
||||
|
||||
void Renderer::render() {
|
||||
r.render(rc, w, h);
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef RENDERER_H
|
||||
#define RENDERER_H
|
||||
|
||||
|
||||
#include "pch.hpp"
|
||||
#include "RendererOpenGL/RendererOpenGL.h"
|
||||
|
||||
namespace Archimedes {
|
||||
@@ -15,7 +15,9 @@ namespace Archimedes {
|
||||
|
||||
void init() { r.init(); }
|
||||
|
||||
void render();
|
||||
void render() {
|
||||
r.render(rc, w, h);
|
||||
}
|
||||
|
||||
std::list<renderCmd*>::iterator addRenderCmd(renderCmd* cmd) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user