mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
18 lines
395 B
C#
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
|
|
}
|
|
}
|