#include "MyStrategy.hpp"
#include <exception>
MyStrategy::MyStrategy() {}
Action MyStrategy::getAction(const PlayerView& playerView, DebugInterface* debugInterface)
{
throw std::exception("Write your strategy here");
}
void MyStrategy::debugUpdate(const PlayerView& playerView, DebugInterface& debugInterface)
{
debugInterface.send(DebugCommand::Clear());
debugInterface.getState();
}