8 lines
99 B
GDScript3
8 lines
99 B
GDScript3
|
extends Node
|
||
|
|
||
|
class_name Damageable
|
||
|
|
||
|
@export var max_health: int
|
||
|
@onready var health = max_health
|
||
|
|