19 lines
438 B
C#
19 lines
438 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using NodeCanvas.Tasks;
|
||
|
using NodeCanvas.Framework;
|
||
|
using BITKit.SubSystems;
|
||
|
using BITKit.SubSystems.Quest;
|
||
|
namespace BITKit
|
||
|
{
|
||
|
public class InvokeMonoAction : ActionTask
|
||
|
{
|
||
|
public BBParameter<MonoAction> action;
|
||
|
protected override void OnExecute()
|
||
|
{
|
||
|
action.value.Excute();
|
||
|
EndAction();
|
||
|
}
|
||
|
}
|
||
|
}
|