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