14 lines
289 B
C#
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();
|
|
}
|
|
}
|