Spaces:
Runtime error
Runtime error
namespace Quantum | |
{ | |
public unsafe abstract partial class AIFunctionBool | |
{ | |
public abstract bool Execute(Frame frame, EntityRef entity); | |
} | |
[ | ]|
[ | ]|
public unsafe partial class DefaultAIFunctionBool : AIFunctionBool | |
{ | |
public override bool Execute(Frame frame, EntityRef entity) | |
{ | |
return false; | |
} | |
} | |
} | |