mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
13 lines
251 B
C#
13 lines
251 B
C#
|
|
namespace Content.Shared.Preferences
|
|
{
|
|
public enum JobPriority
|
|
{
|
|
// These enum values HAVE to match the ones in DbJobPriority in Content.Server.Database
|
|
Never = 0,
|
|
Low = 1,
|
|
Medium = 2,
|
|
High = 3
|
|
}
|
|
}
|