GodotCourse/week6/updated_project/scripts/resources/character_stats.gd
2024-10-07 19:20:42 -04:00

7 lines
147 B
GDScript

class_name CharacterStats
extends Resource
@export var max_health: int = 100
@export var starting_health: int = 100
@export var health: int = 100