Files
RAGECOOP-V/RageCoop.Client/LemonUI/IDrawable.cs

14 lines
256 B
C#
Raw Normal View History

2022-06-27 13:02:31 +08:00
namespace LemonUI
{
/// <summary>
/// Represents an item that can be drawn.
/// </summary>
public interface IDrawable
{
/// <summary>
/// Draws the item on the screen.
/// </summary>
void Draw();
}
}