mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-10 16:30:22 +00:00
10 lines
260 B
C++
10 lines
260 B
C++
![]() |
#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()); };
|
||
|
};
|