11 lines
310 B
C#
11 lines
310 B
C#
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.
|
|
}
|
|
}
|
|
} |