added the maintainer and changed some naming.

This commit is contained in:
douwe
2025-08-26 16:34:49 +02:00
parent 0c693354e6
commit eea9e7d69f
24 changed files with 328 additions and 164 deletions

View File

@@ -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();
};
}