6
StarHorizon_Public/Content.Shared/Preferences/SpawnPriorityPreference.cs
2025-11-05 11:11:22 +03:00

16 lines
362 B
C#

namespace Content.Shared.Preferences
{
/// <summary>
/// The spawn priority preference for a profile. Stored in database!
/// </summary>
public enum SpawnPriorityPreference
{
///////////////////////
/// DO NOT TOUCH!!! ///
///////////////////////
None = 0,
Arrivals = 1,
Cryosleep = 2,
}
}