mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
Fixed missing semicolons
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user