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