namespace CringePlugins.Abstractions; public interface IRenderComponent { /// /// Gets called while the dear ImGui frame is being composed /// void OnFrame(); } internal interface IRootRenderComponent : IRenderComponent, IDisposable;