15 lines
315 B
C#
15 lines
315 B
C#
|
using BehaviorDesigner.Runtime.Tasks;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public class CombatAction : Action
|
||
|
{
|
||
|
protected CombatAi combatAi;
|
||
|
|
||
|
public override void OnAwake()
|
||
|
{
|
||
|
combatAi = GetComponent<CombatAi>();
|
||
|
}
|
||
|
}
|
||
|
}
|