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