From 796769c6a4b5a3c76fb170ce575178001d941472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= Date: Fri, 10 Apr 2026 15:48:43 +0200 Subject: [PATCH] window flag add and remove function definition --- SakuraCore/src/Window.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SakuraCore/src/Window.h b/SakuraCore/src/Window.h index 7eff857..0a59c70 100644 --- a/SakuraCore/src/Window.h +++ b/SakuraCore/src/Window.h @@ -31,6 +31,10 @@ 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);