recrownedgtk/RecrownedAthenaeum/Types/IRectangleDrawable.cs

18 lines
365 B
C#

using RecrownedAthenaeum.Graphics.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;
}
}
}