11 lines
262 B
C#
11 lines
262 B
C#
|
using System;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Saltosion.OneWeapon.AI {
|
|||
|
[Serializable]
|
|||
|
public abstract class BehaviourNode : MonoBehaviour {
|
|||
|
/* Returns true if any action was taken. */
|
|||
|
public abstract bool Execute(Enemy subject);
|
|||
|
}
|
|||
|
}
|