6 lines
169 B
C#
6 lines
169 B
C#
namespace RecrownedGTK.Graphics {
|
|
public interface IDrawable
|
|
{
|
|
void Draw(out float[] vertices, out float[] indices, out TextureData textureData);
|
|
}
|
|
} |