27 lines
509 B
C++
27 lines
509 B
C++
#ifndef DOUWCO_HIVEMIND_ENGINE_HPP
|
|
#define DOUWCO_HIVEMIND_ENGINE_HPP
|
|
|
|
#include <vector>
|
|
|
|
#include "Creeps/Creep.hpp"
|
|
#include "Structures/Structure.hpp"
|
|
|
|
namespace DouwcoHivemind
|
|
{
|
|
class Engine
|
|
{
|
|
private:
|
|
std::vector<std::unique_ptr<Creep>> creeps;
|
|
std::vector<std::unique_ptr<Structure>> structures;
|
|
|
|
public:
|
|
Engine();
|
|
void loop();
|
|
|
|
private:
|
|
void ReadOutCreeps();
|
|
void ReadOutStructures();
|
|
};
|
|
}
|
|
|
|
#endif // DOUWCO_HIVEMIND_ENGINE_HPP
|