using RecrownedGTK.Graphics.Render; namespace RecrownedGTK.Types { /// /// A wrapper that makes sure anything implementing can be drawn with options. /// public interface IRectangleDrawable { byte[] ColorData { get; } float[] vertices { get; } } }