ChatTwo/ChatTwo/Ui/UiComponent.cs

6 lines
94 B
C#
Executable File

namespace ChatTwo.Ui;
internal interface IUiComponent : IDisposable {
void Draw();
}