mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-07 02:26:29 +02:00
11 lines
No EOL
228 B
C++
11 lines
No EOL
228 B
C++
#pragma once
|
|
#include "game_tab/Game.hpp"
|
|
|
|
class GameBase {
|
|
|
|
public:
|
|
virtual Game *GetGame(std::uint32_t id) = 0;
|
|
virtual bool NextGame() = 0;
|
|
virtual std::string GetTag(std::string tag) = 0;
|
|
virtual void Reset() = 0;
|
|
}; |