mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 21:01:52 +00:00
Fixed ImGui and added docking and viewport support
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user