Begin refactor, add documentation

This commit is contained in:
Dane Johnson
2021-01-26 16:42:28 -06:00
parent cd20bc490d
commit 14ed96161d
15 changed files with 274 additions and 105 deletions

View File

@@ -3,9 +3,9 @@
#include <glm/gtc/type_ptr.hpp>
#include "types.h"
#include "Material.h"
#include "Light.h"
#include "../types.h"
#include "../Material.h"
#include "../Light.h"
class Shader {
public:

View File

@@ -2,7 +2,7 @@
#define SKYBOXSHADER_H
#include "Shader.h"
#include "Skybox.h"
#include "../Skybox.h"
class SkyboxShader : public Shader {
public: