13 lines
245 B
C#
13 lines
245 B
C#
|
|
namespace Content.Shared.Preferences
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The backpack preference for a profile. Stored in database!
|
||
|
|
/// </summary>
|
||
|
|
public enum BackpackPreference
|
||
|
|
{
|
||
|
|
Backpack,
|
||
|
|
Satchel,
|
||
|
|
Duffelbag
|
||
|
|
}
|
||
|
|
}
|