14 lines
256 B
C#
14 lines
256 B
C#
![]() |
namespace LemonUI
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Represents an item that can be drawn.
|
||
|
/// </summary>
|
||
|
public interface IDrawable
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Draws the item on the screen.
|
||
|
/// </summary>
|
||
|
void Draw();
|
||
|
}
|
||
|
}
|