You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
185 B
GDScript

1 year ago
extends Action
class_name ActionDestroy
1 year ago
func run(character: Character, blackboard: Blackboard) -> int:
Global.character_mgr.destroy_character(character.id())
return SUCCESS
1 year ago