added the maintainer and changed some naming.
This commit is contained in:
@@ -3,16 +3,16 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "Creeps/Creep.hpp"
|
||||
#include "Structures/Structure.hpp"
|
||||
#include "Creeps/CreepBase.hpp"
|
||||
#include "Structures/StructureBase.hpp"
|
||||
|
||||
namespace DouwcoHivemind
|
||||
{
|
||||
class Engine
|
||||
{
|
||||
private:
|
||||
std::vector<std::unique_ptr<Creep>> creeps;
|
||||
std::vector<std::unique_ptr<Structure>> structures;
|
||||
std::vector<std::unique_ptr<CreepBase>> creeps;
|
||||
std::vector<std::unique_ptr<StructureBase>> structures;
|
||||
|
||||
public:
|
||||
Engine();
|
||||
@@ -21,6 +21,7 @@ namespace DouwcoHivemind
|
||||
private:
|
||||
void ReadOutCreeps();
|
||||
void ReadOutStructures();
|
||||
void clearDeadCreepMemory();
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user