Implemented Layers and LayerStack

This commit is contained in:
Simon Lübeß
2020-11-09 00:10:02 +01:00
parent aa2165ef77
commit efb46ff25c
6 changed files with 148 additions and 15 deletions
+8
View File
@@ -29,6 +29,14 @@ namespace GlitchyEngine.Events
{
protected bool _handled;
public bool Handled
{
[Inline]
get => _handled;
[Inline]
set => _handled = value;
}
public abstract EventType EventType {get;}
public abstract StringView Name {get;}
public abstract EventCategory Category {get;}