11 lines
319 B
C#
Raw Normal View History

2020-02-16 21:44:21 -05:00
namespace RecrownedGTK.Graphics {
2020-02-20 04:17:39 -05:00
public class Texture : IDrawable {
2020-02-16 21:44:21 -05:00
public Texture() {
}
2020-02-20 04:17:39 -05:00
public void Draw(out float[] vertices, out float[] indices, out TextureData textureData) {
throw new System.NotImplementedException();
//TODO: Implement this.
2020-02-16 21:44:21 -05:00
}
}
}