2025-03-25 19:39:00 +01:00
|
|
|
namespace Babushka.scripts.CSharp.Common.Inventory;
|
|
|
|
|
|
|
|
|
|
public enum InventoryActionResult
|
|
|
|
|
{
|
|
|
|
|
Success,
|
2025-09-17 15:07:17 +02:00
|
|
|
DestinationDoesNotExist,
|
2025-03-25 19:39:00 +01:00
|
|
|
DestinationFull,
|
2025-09-17 15:07:17 +02:00
|
|
|
SourceDoesNotExist,
|
2025-03-25 19:39:00 +01:00
|
|
|
SourceIsEmpty
|
|
|
|
|
}
|