1
0
This commit is contained in:
FoxSpellCaster
2025-01-09 22:21:05 -05:00
parent 8d7c9eafd4
commit a8069211b7
5 changed files with 50 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
extends Node3D
var score : int = 0
func increase_score (amount):
score += amount
print(score)