Drawable interface for new rendering structure.

This commit is contained in:
Harrison Deng 2020-02-20 04:18:50 -05:00
parent b885c99a59
commit 260bbeb9cb

View File

@ -0,0 +1,6 @@
namespace RecrownedGTK.Graphics {
public interface IDrawable
{
void Draw(out float[] vertices, out float[] indices, out TextureData textureData);
}
}