2019-12-28 14:35:01 -06:00
|
|
|
|
using RecrownedAthenaeum.Graphics.Render;
|
2019-12-12 14:44:51 -05:00
|
|
|
|
|
|
|
|
|
namespace RecrownedAthenaeum.Types
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A wrapper that makes sure anything implementing can be drawn with options.
|
|
|
|
|
/// </summary>
|
2019-12-21 02:06:56 -05:00
|
|
|
|
public interface IRectangleDrawable
|
2019-12-12 14:44:51 -05:00
|
|
|
|
{
|
2019-12-21 02:06:56 -05:00
|
|
|
|
byte[] ColorData {
|
|
|
|
|
get;
|
|
|
|
|
}
|
2019-12-28 00:13:16 -06:00
|
|
|
|
float[] vertices {
|
|
|
|
|
get;
|
|
|
|
|
}
|
2019-12-12 14:44:51 -05:00
|
|
|
|
}
|
|
|
|
|
}
|