20 lines
327 B
C#
20 lines
327 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace Content.Shared.Pinpointer
|
||
|
|
{
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum PinpointerVisuals : byte
|
||
|
|
{
|
||
|
|
IsActive,
|
||
|
|
TargetDirection,
|
||
|
|
TargetDistance
|
||
|
|
}
|
||
|
|
|
||
|
|
public enum PinpointerLayers : byte
|
||
|
|
{
|
||
|
|
Base,
|
||
|
|
Screen
|
||
|
|
}
|
||
|
|
}
|