11 lines
310 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 14:49:36 -05:00
public void Draw(out VertexInformation[] vertices, out TextureData textureData) {
2020-02-20 04:17:39 -05:00
throw new System.NotImplementedException();
//TODO: Implement this.
2020-02-16 21:44:21 -05:00
}
}
}