7 lines
133 B
GDScript3
Raw Normal View History

2024-01-18 22:35:17 +00:00
class_name Enemy
2024-02-15 15:28:27 +00:00
extends Character
2024-02-13 10:56:04 +00:00
2024-02-15 15:28:27 +00:00
func _init():
controller = EnemyController.new()
add_child(controller)
controller.owner = self