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