Improve BaseTab pgn loading

This commit is contained in:
Loic Guegan 2022-02-24 15:22:56 +01:00
parent 40c6df0e7c
commit f99a7b699a
7 changed files with 87 additions and 48 deletions

View file

@ -4,7 +4,8 @@
class GameBase {
public:
virtual bool HasNextGame() = 0;
virtual Game *GetGame(std::uint32_t id) = 0;
virtual Game *GetNextGame() = 0;
virtual bool NextGame() = 0;
virtual std::string GetTag(std::string tag) = 0;
virtual void Reset() = 0;
};