File size: 407 Bytes
24b81cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AIGroup : Managed
{
	private void AIGroup();
	private void ~AIGroup();
	
	/*!
	Manual group management - add / remove agents from group.
	Don't forget to remove agent from old group.
	Caution! Empty groups are deleted on the next frame.
	*/
 	proto native void AddAgent(notnull AIAgent agent);
 	proto native void RemoveAgent(notnull AIAgent agent);
	
	proto native AIGroupBehaviour GetBehaviour();
};