Move PGN export to the right place

This commit is contained in:
Loic Guegan 2022-03-01 15:58:02 +01:00
parent 9cba705e66
commit cb4f5ada5c
6 changed files with 61 additions and 54 deletions

View file

@ -18,4 +18,6 @@ public:
std::vector<std::shared_ptr<Game>> new_games);
void Reset();
void Export(std::shared_ptr<GameBase> base);
static std::string GetMovesPGN(HalfMove *m, bool needDots);
static std::string GetPGN(std::shared_ptr<Game> g);
};