1
0
Files
godotminiprojects/BaloonPopper/BaloonManager.gd
FoxSpellCaster a8069211b7 Lesson 3
2025-01-09 22:21:05 -05:00

8 lines
98 B
GDScript

extends Node3D
var score : int = 0
func increase_score (amount):
score += amount
print(score)