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