recrownedgtk/RecrownedAthenaeum/Types/IRectangleDrawable.cs

18 lines
356 B
C#
Raw Normal View History

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;
}
float[] vertices {
get;
}
}
}