using UnityEngine; public class DefensiveBehaviour : AbstractBehaviour { protected override void MoveAction() { throw new System.NotImplementedException(); } protected override void AttackAction() { throw new System.NotImplementedException(); } }