custom-chatbot / data /HFSM.Decision.cs
fastx's picture
Upload 84 files
ce81a16
raw
history blame
214 Bytes
using Photon.Deterministic;
using System;
namespace Quantum
{
public abstract unsafe partial class HFSMDecision
{
public string Label;
public abstract Boolean Decide(Frame frame, EntityRef entity);
}
}