11 lines
319 B
C#
11 lines
319 B
C#
namespace RecrownedGTK.Graphics {
|
|
public class Texture : IDrawable {
|
|
public Texture() {
|
|
|
|
}
|
|
public void Draw(out float[] vertices, out float[] indices, out TextureData textureData) {
|
|
throw new System.NotImplementedException();
|
|
//TODO: Implement this.
|
|
}
|
|
}
|
|
} |