Spaces:
Runtime error
Runtime error
namespace Quantum | |
{ | |
[ | ]|
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); | |
} | |
} | |
} | |