From 303578a83f3b33e07e926bab860ab9b76c827959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Wed, 4 Aug 2021 17:21:03 +0200 Subject: [PATCH] Fixed Width and Height property of ApplicationEvent --- GlitchyEngine/src/Events/ApplicationEvent.bf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GlitchyEngine/src/Events/ApplicationEvent.bf b/GlitchyEngine/src/Events/ApplicationEvent.bf index d1ed7bb..32040b6 100644 --- a/GlitchyEngine/src/Events/ApplicationEvent.bf +++ b/GlitchyEngine/src/Events/ApplicationEvent.bf @@ -26,9 +26,9 @@ namespace GlitchyEngine.Events private bool _isResizing; /// The new width of the window. - public int32 Width = _width; + public int32 Width => _width; /// The new height of the window. - public int32 Height = _height; + public int32 Height => _height; /* * If true, indicates that the resizing is not finished. */