ChatTwo/ChatTwo/Ui/UiComponent.cs

6 lines
94 B
C#
Raw Normal View History

2021-12-29 19:31:45 +00:00
namespace ChatTwo.Ui;
internal interface IUiComponent : IDisposable {
void Draw();
}