using BehaviorDesigner.Runtime; namespace DDD { public class RestaurantNpcCharacter : RestaurantCharacter { protected BehaviorTree _behaviorTree; protected SpineController _spineController; protected override void Awake() { base.Awake(); _behaviorTree = GetComponent(); _spineController = GetComponent(); } } }