Files
Babushka/scripts/CSharp/Common/Inventory/InventoryActionResult.cs
T
2025-03-25 19:39:06 +01:00

11 lines
201 B
C#

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