Harrison
519d31f2e1
Updated RectTextrue.cs, VertexInformation.cs, and IDrawable.cs to properly pass indice information.
18 lines
353 B
C#
18 lines
353 B
C#
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;
|
|
}
|
|
}
|
|
}
|