mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-07-06 20:27:40 +00:00
10 lines
187 B
C++
10 lines
187 B
C++
![]() |
#pragma once
|
||
|
#include "game_tab/Game.hpp"
|
||
|
|
||
|
class GameBase {
|
||
|
|
||
|
public:
|
||
|
virtual bool HasNextGame() = 0;
|
||
|
virtual Game *GetGame(std::uint32_t id) = 0;
|
||
|
virtual Game *GetNextGame() = 0;
|
||
|
};
|