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