Fixed missing semicolons

This commit is contained in:
Simon Lübeß
2025-03-19 21:15:37 +01:00
parent 6d50208700
commit 77a7a04637
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ namespace GlitchyEngine.Events
[Inline]
public Key KeyCode => _keyCode;
public override EventCategory Category => .Input | .Keyboard
public override EventCategory Category => .Input | .Keyboard;
protected this(Key keyCode)
{
@@ -61,7 +61,7 @@ namespace GlitchyEngine.Events
[Inline]
public char16 Char => _char;
public override EventCategory Category => .Input | .Keyboard
public override EventCategory Category => .Input | .Keyboard;
public override EventType EventType => .KeyTyped;
public static EventType StaticType => .KeyTyped;