Kav/Geometry/Interfaces/IHasVertexPositions.cs

10 lines
140 B
C#

using Microsoft.Xna.Framework;
namespace Kav
{
public interface IHasVertexPositions
{
Vector3[] Positions { get; }
}
}