Fixed compile error
This commit is contained in:
Binary file not shown.
9
src/crumpet-engine/entitymanager/entity.cpp
Normal file
9
src/crumpet-engine/entitymanager/entity.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "entity.h"
|
||||
|
||||
Entity::Entity() {
|
||||
|
||||
}
|
||||
|
||||
Entity::~Entity() {
|
||||
|
||||
}
|
||||
@@ -1 +1,9 @@
|
||||
#include "entitybase.h"
|
||||
|
||||
EntityBase::EntityBase() {
|
||||
|
||||
}
|
||||
|
||||
EntityBase::~EntityBase() {
|
||||
|
||||
}
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -8,5 +8,5 @@ public:
|
||||
|
||||
TextureManager textureManager;
|
||||
|
||||
virtual ~ResourceManger();
|
||||
virtual ~ResourceManger() {};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user