Lisa-Chatbot / data /AIFunctionNOT.cs
fastx's picture
Duplicate from fastx/custom-chatbot
59368e0
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);
}
}
}