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

@@ -0,0 +1,18 @@
#ifndef DOUWCO_HIVEMIND_HARVESTER_UPGRADER_HPP
#define DOUWCO_HIVEMIND_HARVESTER_UPGRADER_HPP
#include "Creeps/Worker.hpp"
namespace DouwcoHivemind
{
class Upgrader : public Worker
{
public:
Upgrader(Screeps::Creep creep) : Worker(creep) {}
protected:
void depositEnergy() override;
};
}
#endif // DOUWCO_HIVEMIND_HARVESTER_UPGRADER_HPP