Fixed ImGui and added docking and viewport support

This commit is contained in:
Simon Lübeß
2020-11-16 21:16:19 +01:00
parent b472d0774d
commit 6bfeffa49d
9 changed files with 115 additions and 48 deletions
@@ -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;
}
}