Basic implementation of jobs in the character profile.

This commit is contained in:
Pieter-Jan Briers
2020-01-19 09:34:33 +01:00
parent afef34a648
commit f86ad6175e
12 changed files with 543 additions and 127 deletions

View File

@@ -0,0 +1,11 @@
namespace Content.Shared.Preferences
{
public enum JobPriority
{
// These enum values HAVE to match the ones in DbJobPriority in Server.Database.
Never = 0,
Low = 1,
Medium = 2,
High = 3
}
}