delurbelako/scripts/inventory/stack.gd

11 lines
206 B
GDScript

extends RefCounted
class_name Stack
func _init(item: Item = null, amount: int = 0) -> void:
held_item = item
self.amount = amount
@export_storage var held_item : Item
@export_storage var amount : int