aboutsummaryrefslogtreecommitdiff
path: root/src/base_tab/gamebase/GameBase.hpp
blob: 9982a7d9e16a3bd40554ef36fbc3b65e701c12e5 (plain)
1
2
3
4
5
6
7
8
9
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;
};