mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
24 lines
428 B
Beef
24 lines
428 B
Beef
using GlitchyEngine.Events;
|
|
|
|
namespace GlitchyEngine.Events
|
|
{
|
|
extension EventType
|
|
{
|
|
case ImGuiRender;
|
|
}
|
|
}
|
|
|
|
namespace GlitchyEngine.ImGui
|
|
{
|
|
public class ImGuiRenderEvent : Event, IEvent
|
|
{
|
|
public override EventType EventType => .ImGuiRender;
|
|
|
|
public override EventCategory Category => .Application;
|
|
|
|
public override System.StringView Name => "ImGuiRender";
|
|
|
|
public static EventType StaticType => .ImGuiRender;
|
|
}
|
|
}
|