11 lines
199 B
C#
11 lines
199 B
C#
namespace Babushka.scripts.CSharp.Common.Inventory;
|
|
|
|
public enum InventoryActionResult
|
|
{
|
|
Success,
|
|
DestinationDoesNotExist,
|
|
DestinationFull,
|
|
SourceDoesNotExist,
|
|
SourceIsEmpty
|
|
}
|