11 lines
201 B
C#
11 lines
201 B
C#
namespace Babushka.scripts.CSharp.Common.Inventory;
|
|
|
|
public enum InventoryActionResult
|
|
{
|
|
Success,
|
|
DestinationDoesNotExists,
|
|
DestinationFull,
|
|
SourceDoesNotExists,
|
|
SourceIsEmpty
|
|
}
|