custom-chatbot / data /AIFunctionBool.cs
fastx's picture
Upload 64 files
00437a9
raw
history blame
348 Bytes
namespace Quantum
{
public unsafe abstract partial class AIFunctionBool
{
public abstract bool Execute(Frame frame, EntityRef entity);
}
[BotSDKHidden]
[System.Serializable]
public unsafe partial class DefaultAIFunctionBool : AIFunctionBool
{
public override bool Execute(Frame frame, EntityRef entity)
{
return false;
}
}
}