1
0

PinpointerVisuals.cs 308 B

123456789101112131415161718
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Pinpointer
  3. {
  4. [Serializable, NetSerializable]
  5. public enum PinpointerVisuals : byte
  6. {
  7. IsActive,
  8. ArrowAngle,
  9. TargetDistance
  10. }
  11. public enum PinpointerLayers : byte
  12. {
  13. Base,
  14. Screen
  15. }
  16. }