summaryrefslogtreecommitdiff
path: root/include/spacebot.h
blob: 9b893835c50756ca1f41f312097523b896e9c49a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <string>
#include "move.h"
#include "game_state.h"

class Spacebot {
public:
    Spacebot(std::string outputPath);
    void writeNextMove();
private:
    std::string outputFilename;
    GameState gameState;
    void writeMove(const Move& move);
    Move chooseMove();
};