Update BaseTab implementation

This commit is contained in:
Loic Guegan 2022-02-24 11:50:16 +01:00
parent bdfc577a3b
commit 32a0b3e31f
7 changed files with 56 additions and 12 deletions

View file

@ -0,0 +1,10 @@
#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;
};