Fixed compile error

This commit is contained in:
Ben
2018-11-29 18:07:12 +00:00
parent 26bbbf09ec
commit ac22247b08
5 changed files with 19 additions and 4 deletions

Binary file not shown.

View File

@@ -0,0 +1,9 @@
#include "entity.h"
Entity::Entity() {
}
Entity::~Entity() {
}

View File

@@ -1 +1,9 @@
#include "entitybase.h"
EntityBase::EntityBase() {
}
EntityBase::~EntityBase() {
}

View File

@@ -1,15 +1,13 @@
#pragma once
#include <string>
#include <iostream>
#include <map>
#include <vector>
#include "entity.h"
class EntityManager {
public:
EntityManager():
EntityManager();
virtual ~EntityManager();
private:

View File

@@ -8,5 +8,5 @@ public:
TextureManager textureManager;
virtual ~ResourceManger();
virtual ~ResourceManger() {};
};