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,18 +3,18 @@
#include <Screeps/StructureSpawn.hpp>
#include "Structures/Structure.hpp"
#include "Structures/StructureBase.hpp"
namespace DouwcoHivemind
{
class Spawn : public Structure
class Spawn : public StructureBase
{
private:
Screeps::StructureSpawn spawn;
public:
Spawn(Screeps::StructureSpawn spwn) : spawn(spwn),
Structure() {}
StructureBase() {}
~Spawn() {}
void loop() override;

View File

@@ -5,7 +5,7 @@
namespace DouwcoHivemind
{
class Structure
class StructureBase
{
public:
virtual void loop(){}