ProjetAMJV_CR/Assets/Scripts/UnitScripts/BehaviorState/DefensiveBehaviour.cs

14 lines
289 B
C#

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