mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Environment collision detection with PhysicsBSP * Re-enabling tracking code * Fixing LandOnSphere test
10 lines
160 B
C#
10 lines
160 B
C#
using System.Numerics;
|
|
|
|
namespace ACE.Entity
|
|
{
|
|
public class Plane
|
|
{
|
|
public Vector3 N { get; set; }
|
|
public float D { get; set; }
|
|
}
|
|
}
|