summaryrefslogtreecommitdiff
path: root/2015-spacebot/include/move_string_mapper.h
blob: 46144c74b82bc2792b48a280fa133ad01c876d7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

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

class MoveStringMapper
{
public:
    MoveStringMapper();
    std::string toString(const Move &move);
private:
    std::map<Move, const char*> moveMap;
};