Lisa-Chatbot / data /AIFunctionFP.cs
fastx's picture
Duplicate from fastx/custom-chatbot
59368e0
raw
history blame
367 Bytes
using Photon.Deterministic;
namespace Quantum
{
public abstract unsafe partial class AIFunctionFP
{
public abstract FP Execute(Frame frame, EntityRef entity);
}
[BotSDKHidden]
[System.Serializable]
public unsafe partial class DefaultAIFunctionFP : AIFunctionFP
{
public override FP Execute(Frame frame, EntityRef entity)
{
return FP._0;
}
}
}