21 lines
384 B
C++
21 lines
384 B
C++
#ifndef DOUWCO_HIVEMIND_MINER_HPP
|
|
#define DOUWCO_HIVEMIND_MINER_HPP
|
|
|
|
#include "Creeps/CreepBase.hpp"
|
|
#include <string>
|
|
|
|
namespace DouwcoHivemind
|
|
{
|
|
class Miner : public CreepBase
|
|
{
|
|
private:
|
|
bool arrivedAtContainer;
|
|
|
|
public:
|
|
Miner(Screeps::Creep crp);
|
|
~Miner() override;
|
|
void loop() override;
|
|
};
|
|
}
|
|
|
|
#endif // DOUWCO_HIVEMIND_MINER_HPP
|