ProjectDDD/Assets/_DDD/_Scripts/RestaurantCharacter/Npc/RestaurantNpcCharacter.cs

14 lines
290 B
C#
Raw Normal View History

using Opsive.BehaviorDesigner.Runtime;
using UnityEngine;
2025-08-12 11:46:30 +00:00
namespace DDD
{
[RequireComponent(typeof(RestaurantNpcMovement))]
2025-08-12 11:46:30 +00:00
public class RestaurantNpcCharacter : RestaurantCharacter
{
protected override void Awake()
{
base.Awake();
}
}
}