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