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