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