This commit is contained in:
fatbonks
2025-10-16 05:26:03 +13:00
parent 3090991593
commit 953625fd7a
45 changed files with 1890 additions and 15 deletions

14
objects/player/player.gd Executable file
View File

@@ -0,0 +1,14 @@
class_name Player
extends Node2D
signal stats_changed()
@export var damage:int = 1:
set(value):
damage = value
stats_changed.emit()
@export var health:int = 100
@export var speed:int = 10