source: opengl-game/game-gui.hpp@ 98f3232

feature/imgui-sdl points-test
Last change on this file since 98f3232 was 98f3232, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

Use GameGui as the base class for GameGui_SDL

  • Property mode set to 100644
File size: 177 bytes
Line 
1#define RTWO_SUCCESS true
2#define RTWO_ERROR false
3
4class GameGui {
5 public:
6 virtual ~GameGui() {};
7
8 virtual bool Init() = 0;
9 virtual void Shutdown() = 0;
10};
Note: See TracBrowser for help on using the repository browser.