17 lines
357 B
C#
17 lines
357 B
C#
using UnityEngine;
|
|
|
|
namespace DDD
|
|
{
|
|
// [RequireComponent(typeof(BehaviorTree))]
|
|
public class RestaurantNpcCharacter : RestaurantCharacter
|
|
{
|
|
// protected BehaviorTree _behaviorTree;
|
|
|
|
protected override void Awake()
|
|
{
|
|
base.Awake();
|
|
|
|
// _behaviorTree = GetComponent<BehaviorTree>();
|
|
}
|
|
}
|
|
} |