Lisa-Chatbot / data /AIFunctionByte.cs
fastx's picture
Duplicate from fastx/custom-chatbot
59368e0
raw
history blame
344 Bytes
namespace Quantum
{
public unsafe abstract partial class AIFunctionByte
{
public abstract byte Execute(Frame frame, EntityRef entity);
}
[BotSDKHidden]
[System.Serializable]
public unsafe partial class DefaultAIFunctionByte : AIFunctionByte
{
public override byte Execute(Frame frame, EntityRef entity)
{
return 0;
}
}
}