Files
se-launcher/CringePlugins/Abstractions/IRenderComponent.cs
2024-10-22 21:40:32 +07:00

11 lines
275 B
C#

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