Dev settings for using ScriptCore as either dll or csproj

This commit is contained in:
Simon Lübeß
2025-08-09 23:40:31 +02:00
parent d002dfe25e
commit b94b2afc55
9 changed files with 88 additions and 22 deletions
@@ -129,4 +129,24 @@ namespace GlitchyEngine.Events
strBuffer.AppendF("WindowDeactivatedEvent");
}
}
public class SettingsAppliedEvent : Event, IEvent
{
public override EventType EventType => .SettingsApplied;
public override StringView Name => "SettingsApplied";
public override EventCategory Category => .Application;
public static EventType StaticType => .SettingsApplied;
public this()
{
}
public override void ToString(String strBuffer)
{
strBuffer.AppendF("SettingsAppliedEvent");
}
}
}
+1 -1
View File
@@ -5,7 +5,7 @@ namespace GlitchyEngine.Events
{
None = 0,
WindowClose, WindowResize, WindowFocus, WindowLostFocus, WindowMoved, WindowActivated, WindowDeactivated,
AppTick, AppUpdate, AppRender,
AppTick, AppUpdate, AppRender, SettingsApplied,
KeyPressed, KeyReleased, KeyTyped,
MouseButtonPressed, MouseButtonReleased, MouseMoved, MouseScrolled
}