Spaces:
Runtime error
Runtime error
File size: 348 Bytes
00437a9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
namespace Quantum
{
public unsafe abstract partial class AIFunctionBool
{
public abstract bool Execute(Frame frame, EntityRef entity);
}
[BotSDKHidden]
[System.Serializable]
public unsafe partial class DefaultAIFunctionBool : AIFunctionBool
{
public override bool Execute(Frame frame, EntityRef entity)
{
return false;
}
}
}
|