recrownedgtk/RecrownedGTK/Types/IRectangleDrawable.cs

18 lines
353 B
C#
Raw Normal View History

2020-02-17 02:44:21 +00:00
using RecrownedGTK.Graphics.Render;
namespace RecrownedGTK.Types
{
/// <summary>
/// A wrapper that makes sure anything implementing can be drawn with options.
/// </summary>
public interface IRectangleDrawable
{
byte[] ColorData {
get;
}
float[] vertices {
get;
}
}
}