recrownedgtk/RecrownedGTK/Graphics/Texture.cs

11 lines
310 B
C#
Raw Normal View History

2020-02-17 02:44:21 +00:00
namespace RecrownedGTK.Graphics {
2020-02-20 09:17:39 +00:00
public class Texture : IDrawable {
2020-02-17 02:44:21 +00:00
public Texture() {
}
2020-02-20 19:49:36 +00:00
public void Draw(out VertexInformation[] vertices, out TextureData textureData) {
2020-02-20 09:17:39 +00:00
throw new System.NotImplementedException();
//TODO: Implement this.
2020-02-17 02:44:21 +00:00
}
}
}