GodotCourse/week6/updated_project/scripts/resources/character_stats.gd

8 lines
148 B
GDScript3
Raw Normal View History

2024-08-19 15:21:33 +00:00
class_name CharacterStats
extends Resource
@export var max_health: int = 100
@export var starting_health: int = 100
@export var health: int = 100