SharedRingerSystem.cs 427 B

123456789101112131415161718192021222324252627
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.PDA;
  3. public abstract class SharedRingerSystem : EntitySystem
  4. {
  5. public const int RingtoneLength = 6;
  6. public const int NoteTempo = 300;
  7. public const float NoteDelay = 60f / NoteTempo;
  8. }
  9. [Serializable, NetSerializable]
  10. public enum Note : byte
  11. {
  12. A,
  13. Asharp,
  14. B,
  15. C,
  16. Csharp,
  17. D,
  18. Dsharp,
  19. E,
  20. F,
  21. Fsharp,
  22. G,
  23. Gsharp
  24. }