custom-chatbot / data /AIFunctionFPVector2.cs
fastx's picture
Upload 64 files
00437a9
raw
history blame
411 Bytes
using Photon.Deterministic;
namespace Quantum
{
public unsafe abstract partial class AIFunctionFPVector2
{
public abstract FPVector2 Execute(Frame frame, EntityRef entity);
}
[BotSDKHidden]
[System.Serializable]
public unsafe partial class DefaultAIFunctionFPVector2 : AIFunctionFPVector2
{
public override FPVector2 Execute(Frame frame, EntityRef entity)
{
return FPVector2.Zero;
}
}
}