1
0

SpawnPriorityPreference.cs 362 B

123456789101112131415
  1. namespace Content.Shared.Preferences
  2. {
  3. /// <summary>
  4. /// The spawn priority preference for a profile. Stored in database!
  5. /// </summary>
  6. public enum SpawnPriorityPreference
  7. {
  8. ///////////////////////
  9. /// DO NOT TOUCH!!! ///
  10. ///////////////////////
  11. None = 0,
  12. Arrivals = 1,
  13. Cryosleep = 2,
  14. }
  15. }