aboutsummaryrefslogtreecommitdiff
path: root/lib/upgrade_interface.gd
blob: b7f05ee512818f3f891f8c892bfa0018e048f7dd (plain)
1
2
3
4
5
6
7
8
9
extends BuildingInterface
class_name UpgradeInterface

func set_amount(amount: int) -> void:
	SaveState.upgrades[building_identifier] = amount

func get_amount() -> int:
	return SaveState.upgrades[building_identifier]