using System.Collections; using System.Collections.Generic; using UnityEngine; public class Catninja_Far : Enemy { public override void OnState() { switch (state) { case CharacterState.Run: return; } base.OnState(); } }