NogginBops / ImGui.NET_OpenTK_Sample

A sample project showing an ImGui (using ImGui.NET) renderer for OpenTK in C#
106 stars 27 forks source link

Consider making this inherit GameWindow #25

Closed Shadowblitz16 closed 1 year ago

Shadowblitz16 commented 1 year ago

Consider making this inherit GameWindow. Maybe call it ImGuiWindow.

public class Program : ImGuiWindow
{
    public override void OnGui()
    {
        ImGui.Begin()

        ImGui.End()
    }
}
NogginBops commented 1 year ago

I will not be doing this. This sample is meant to be an easy plug and play class that you can just add to your existing project and get going. I see no value doing this myself over users implementing this themselves if they want to.