File size: 411 Bytes
00437a9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Photon.Deterministic;

namespace Quantum
{
	public unsafe abstract partial class AIFunctionFPVector3
	{
		public abstract FPVector3 Execute(Frame frame, EntityRef entity);
	}

	[BotSDKHidden]
	[System.Serializable]
	public unsafe partial class DefaultAIFunctionFPVector3 : AIFunctionFPVector3
	{
		public override FPVector3 Execute(Frame frame, EntityRef entity)
		{
			return FPVector3.Zero;
		}
	}
}