recrownedgtk/RecrownedGTK/Graphics/Texture.cs

11 lines
319 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 09:17:39 +00:00
public void Draw(out float[] vertices, out float[] indices, out TextureData textureData) {
throw new System.NotImplementedException();
//TODO: Implement this.
2020-02-17 02:44:21 +00:00
}
}
}