feat: add persistent inventory storage slots

This commit is contained in:
Alexander Sellite 2026-08-16 16:39:35 -04:00
parent 6db6fbba7f
commit a88e76848b
13 changed files with 875 additions and 65 deletions

View file

@ -64,6 +64,10 @@ static func get_stock_item_ids() -> Array[StringName]:
return ITEM_ORDER.duplicate()
static func get_stock_order_index(item_id: StringName) -> int:
return ITEM_ORDER.find(item_id)
static func get_rod_stock(
catalog: ItemCatalogType,
) -> Array[FishingRodDataType]: