Added Default property to WindowDescription

This commit is contained in:
Simon Lübeß
2020-11-16 21:45:50 +01:00
parent 7b81339889
commit 9b2d32d43b
2 changed files with 4 additions and 8 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ namespace GlitchyEngine
Runtime.Assert(s_Instance == null, "Tried to create a second application.");
s_Instance = this;
_window = GlitchyEngine.Window.CreateWindow(WindowDescription());
_window = new Window(.Default);
_window.EventCallback = new => OnEvent;
_imGuiLayer = new ImGuiLayer();