aboutsummaryrefslogtreecommitdiff
path: root/src/base_tab/gamebase/PGNGameBase.hpp
blob: 2aa084053319f5baa52513b3ec6649a68b5313df (plain)
1
2
3
4
5
6
7
8
9
10
#include "GameBase.hpp"

class PGNGameBase : public GameBase {
public:
  PGNGameBase(std::string pgn_file);

  bool HasNextGame() { return (false); }
  Game *GetGame(std::uint32_t id) { return (new Game()); };
  Game *GetNextGame() { return (new Game()); };
};