Added icon for editor

This commit is contained in:
Simon Lübeß
2023-12-15 14:52:19 +01:00
parent a129156641
commit 66281ebddb
2 changed files with 4 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

+4 -1
View File
@@ -59,7 +59,10 @@ namespace GlitchyEngine
_layerStack = new LayerStack(); _layerStack = new LayerStack();
_gameTime = new GameTime(true); _gameTime = new GameTime(true);
_window = new Window(.Default); WindowDescription windowDesc = .Default;
windowDesc.Icon = "Resources/Textures/GlitchyEngineIcon.ico";
_window = new Window(windowDesc);
_window.EventCallback = new => OnEvent; _window.EventCallback = new => OnEvent;
Input.Init(); Input.Init();