11 lines
191 B
C#
11 lines
191 B
C#
|
using Microsoft.Xna.Framework.Graphics;
|
||
|
|
||
|
namespace Kav
|
||
|
{
|
||
|
public interface IIndexDrawable
|
||
|
{
|
||
|
VertexBuffer VertexBuffer { get; }
|
||
|
IndexBuffer IndexBuffer { get; }
|
||
|
}
|
||
|
}
|