ace/Source/ACE.Entity/BSPNode.cs
gmriggs 6311882f18 Adding PartArray, PhysicsPart, Sphere, SphereTests (#644)
* Adding PartArray, PhysicsPart, Sphere, SphereTests

* Adding missing files
2018-02-22 01:57:02 -05:00

18 lines
395 B
C#

using System.Collections.Generic;
namespace ACE.Entity
{
public class BSPNode
{
public uint Type { get; set; }
public Plane SplittingPlane { get; set; }
public BSPNode PosNode { get; set; }
public BSPNode NegNode { get; set; }
public Sphere Sphere { get; set; }
public List<ushort> InPolys { get; set; } // List of PolygonIds
}
}