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

11 lines
201 B
C#
Raw Normal View History

2025-03-25 19:39:00 +01:00
namespace Babushka.scripts.CSharp.Common.Inventory;
public enum InventoryActionResult
{
Success,
DestinationDoesNotExists,
DestinationFull,
SourceDoesNotExists,
SourceIsEmpty
}