Changeset 98f3232 in opengl-game for game-gui.hpp
- Timestamp:
- Jul 11, 2019, 3:53:03 PM (6 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 321272c
- Parents:
- f286a10
- git-author:
- Dmitry Portnoy <dmitry.portnoy@…> (07/11/19 15:50:51)
- git-committer:
- Dmitry Portnoy <dmitry.portnoy@…> (07/11/19 15:53:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
game-gui.hpp
rf286a10 r98f3232 1 #define RTWO_SUCCESS true 2 #define RTWO_ERROR false 3 1 4 class GameGui { 2 5 public: 3 virtual void Init(); 4 virtual void Shutdown(); 6 virtual ~GameGui() {}; 7 8 virtual bool Init() = 0; 9 virtual void Shutdown() = 0; 5 10 };
Note:
See TracChangeset
for help on using the changeset viewer.