Files
Babushka/scripts/CSharp/Common/Inventory/InventoryActionResult.cs

11 lines
199 B
C#

namespace Babushka.scripts.CSharp.Common.Inventory;
public enum InventoryActionResult
{
Success,
DestinationDoesNotExist,
DestinationFull,
SourceDoesNotExist,
SourceIsEmpty
}