window creation

This commit is contained in:
2026-04-11 01:10:34 -05:00
parent 9c98964588
commit f03f521141
7 changed files with 43 additions and 10 deletions

View File

@@ -4,6 +4,8 @@
#include "SDL3/SDL.h"
#include "SDL3/SDL_Vulkan.h"
// reference: https://wiki.libsdl.org/SDL3/SDL_CreateWindow
class Window {
public:
@@ -17,5 +19,4 @@ private:
SDL_Window* window_;
};