16 lines
362 B
C#
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,
|
|
}
|
|
}
|