Files
jelito/Assets/jelycho/Code/ZombieActor.cs
2025-05-14 10:51:59 +02:00

15 lines
386 B
C#

using RebootKit.Engine.Services.Simulation;
using UnityEngine;
using UnityEngine.AI;
namespace RealityReboot.jelycho {
[AddComponentMenu(GameConsts.k_AddComponentMenu + "Zombie Actor")]
public class ZombieActor : Actor {
[SerializeField] NavMeshAgent m_NavMeshAgent;
[SerializeField] Animator m_Animator;
void OnEnable() {
}
}
}