File size: 347 Bytes
00437a9
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using Photon.Deterministic;

namespace Quantum
{
	public abstract unsafe partial class AIAction
	{
		public string Label;
		public const int NEXT_ACTION_DEFAULT = -1;

		public abstract void Update(Frame frame, EntityRef entity);
		public virtual int NextAction(Frame frame, EntityRef entity) { return NEXT_ACTION_DEFAULT; }
	}
}