mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-10 08:20:23 +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;
|
||
|
};
|