recrownedgtk/RecrownedAthenaeum/Types/IRectangleDrawable.cs

15 lines
302 B
C#

using RecrownedAthenaeum.Render;
namespace RecrownedAthenaeum.Types
{
/// <summary>
/// A wrapper that makes sure anything implementing can be drawn with options.
/// </summary>
public interface IRectangleDrawable
{
byte[] ColorData {
get;
}
}
}