Changeset 0e6ecf3 in opengl-game for game-gui-sdl.hpp
- Timestamp:
- Jul 19, 2019, 8:50:06 PM (6 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 8667f76
- Parents:
- 75108ef
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
game-gui-sdl.hpp
r75108ef r0e6ecf3 1 #ifndef _GAME_GUI_SDL_H 2 #define _GAME_GUI_SDL_H 3 1 4 #include "game-gui.hpp" 5 6 #include <SDL2/SDL.h> 7 #include <SDL2/SDL_vulkan.h> 2 8 3 9 class GameGui_SDL : public GameGui { … … 5 11 bool Init(); 6 12 void Shutdown(); 13 14 void* CreateWindow(const string& title, unsigned int width, unsigned int height); 15 void DestroyWindow(); 16 17 bool CreateVulkanSurface(VkInstance instance, VkSurfaceKHR* surface); 18 19 private: 20 SDL_Window* window; 7 21 }; 22 23 #endif // _GAME_GUI_SDL_H
Note:
See TracChangeset
for help on using the changeset viewer.