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

#include <iostream>
#include <fstream>

class Spacebot {
public:
    Spacebot(const std::string& outputPath);
    void writeNextMove();
private:
    std::ifstream mapStream;
    std::ofstream resultStream;
};