using System.Collections.Generic; using ACE.Entity.Enum; using ACE.Server.Physics.Entity; namespace ACE.Server.Physics.Common { public class VertexArray { public VertexType Type; public List Vertices; public VertexArray() { Vertices = new List(); } public VertexArray(VertexType type, int numVerts) { Vertices = new List(numVerts); Type = type; } } }