mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-15 03:31:38 +01:00
17 lines
476 B
C#
17 lines
476 B
C#
namespace Content.Shared.NPC;
|
|
|
|
public abstract class SharedNPCSteeringSystem : EntitySystem
|
|
{
|
|
public const byte InterestDirections = 12;
|
|
|
|
/// <summary>
|
|
/// How many radians between each interest direction.
|
|
/// </summary>
|
|
public const float InterestRadians = MathF.Tau / InterestDirections;
|
|
|
|
/// <summary>
|
|
/// How many degrees between each interest direction.
|
|
/// </summary>
|
|
public const float InterestDegrees = 360f / InterestDirections;
|
|
}
|