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