namespace LemonUI { /// /// Represents an item that can be drawn. /// public interface IDrawable { /// /// Draws the item on the screen. /// void Draw(); } }