From 99d508c5ed5195da6025bdec9ec149864c84563c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= Date: Wed, 15 Apr 2026 10:35:22 +0200 Subject: [PATCH] added windowFlag to WindowData so client can specify the first window's flags when application is created --- SakuraCore/src/Window.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SakuraCore/src/Window.h b/SakuraCore/src/Window.h index 6c1fb47..8f84b57 100644 --- a/SakuraCore/src/Window.h +++ b/SakuraCore/src/Window.h @@ -9,6 +9,7 @@ namespace SakuraVNE { struct WindowData { + std::span windowFlags; std::string title = "Window Title"; int width = 1280; int height = 720; @@ -30,9 +31,7 @@ public: void Destroy(); void Update(); - // TODO: implement void AddFlags(std::span flags = {}); - // TODO: implement void RemoveFlags(std::span flags = {}); void Resize(); void ProcessEvent(const SDL_Event &event);