Started an entity system

This commit is contained in:
Ben
2018-11-29 14:23:16 +00:00
parent 30168411c7
commit 883d152893
6 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
#pragma once
#include "entitybase.h"
class Entity : public EntityBase {
};

View File

@@ -0,0 +1 @@
#include "entitybase.h"

View File

@@ -0,0 +1,5 @@
#pragma once
class EntityBase {
};

View File

@@ -0,0 +1,2 @@
#include "entitymanager.h"

View File

@@ -0,0 +1,5 @@
#pragma once
class EntityManager {
};

View File

@@ -18,7 +18,6 @@ public:
Renderer renderer;
Input input;
// Input instance
// Entity list <- Renderer renders from this
// Camera list and switching and adding