D3ltaQ's picture
Upload 2197 files
24b81cb verified
raw
history blame contribute delete
407 Bytes
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();
};