Add behaviourState + NeutralBehavior

This commit is contained in:
Crizomb 2025-01-13 17:41:17 +01:00
parent 7287be07a9
commit 5bca085548
13 changed files with 123 additions and 11 deletions

View file

@ -0,0 +1,14 @@
using UnityEngine;
public class DefensiveBehaviour : AbstractBehaviour
{
protected override void MoveAction()
{
throw new System.NotImplementedException();
}
protected override void AttackAction()
{
throw new System.NotImplementedException();
}
}