mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
10 lines
171 B
C#
10 lines
171 B
C#
using System.Numerics;
|
|
|
|
namespace ACE.Entity
|
|
{
|
|
public class Sphere
|
|
{
|
|
public Vector3 Origin { get; set; }
|
|
public float Radius { get; set; }
|
|
}
|
|
}
|