8 lines
87 B
C#
8 lines
87 B
C#
|
public enum HoarderBugItemStatus
|
||
|
{
|
||
|
Any = -1,
|
||
|
Owned = 0,
|
||
|
Stolen = 1,
|
||
|
Returned = 2
|
||
|
}
|