namespace RecrownedGTK.Graphics { public class Texture : IDrawable { public Texture() { } public void Draw(out VertexInformation[] vertices, out TextureData textureData) { throw new System.NotImplementedException(); //TODO: Implement this. } } }