Reorginization

This commit is contained in:
Ben Kyd
2019-07-26 07:22:40 +01:00
parent 4d9db53de9
commit ba7c58dd7c
4 changed files with 11 additions and 10 deletions

View File

@@ -57,6 +57,7 @@ include_directories(${executable}
file(GLOB SourceFiles
${SrcDIR}/*
${SrcDIR}/core/*
${SrcDIR}/core/renderengine/*
${SrcDIR}/display/*
${SrcDIR}/primatives/*
${SrcDIR}/util/*

View File

@@ -1,9 +0,0 @@
#ifndef INFERNO_CORE_PROGRESSIVERENDERER_H_
#define INFERNO_CORE_PROGRESSIVERENDERER_H_
class ProgressiveRenderer {
public:
ProgressiveRenderer();
};
#endif

View File

@@ -1,4 +1,4 @@
#include "./progressiveRenderer.hpp"
#include "./progressiverenderer.hpp"
ProgressiveRenderer::ProgressiveRenderer() {

View File

@@ -0,0 +1,9 @@
#ifndef INFERNO_CORE_RENDERENGINE_PROGRESSIVERENDERER_H_
#define INFERNO_CORE_RENDERENGINE_PROGRESSIVERENDERER_H_
class ProgressiveRenderer {
public:
ProgressiveRenderer();
};
#endif