Fixed Width and Height property of ApplicationEvent

This commit is contained in:
Simon Lübeß
2021-08-04 17:21:03 +02:00
parent ce163db30b
commit 303578a83f
+2 -2
View File
@@ -26,9 +26,9 @@ namespace GlitchyEngine.Events
private bool _isResizing; private bool _isResizing;
/// The new width of the window. /// The new width of the window.
public int32 Width = _width; public int32 Width => _width;
/// The new height of the window. /// The new height of the window.
public int32 Height = _height; public int32 Height => _height;
/* /*
* If true, indicates that the resizing is not finished. * If true, indicates that the resizing is not finished.
*/ */