summaryrefslogtreecommitdiff
path: root/src/spacebot.cpp
blob: 0fc39b1912196d2ca9141e887c2ad8d4a2ba7494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "spacebot.h"

Spacebot::Spacebot(const std::string& outputPath)
  : mapStream(outputPath+"map.txt", std::ifstream::in)
  , resultStream(outputPath+"move.txt", std::ofstream::out)
{
}

void Spacebot::writeNextMove()
{
  resultStream << "Shoot" << std::endl;
}