prototype

This commit is contained in:
Michael Campbell 2026-01-29 14:23:33 -05:00
commit 5bac9ddd2a
33 changed files with 956 additions and 0 deletions

12
score_label.gd Normal file
View file

@ -0,0 +1,12 @@
extends Label
var score := 0:
set(v):
score = v
text = "Score: %d" % v
func _ready() -> void:
score = score
SignalBus.building_destroyed.connect(func(_building):
score += 10
)