aigroup.c 407 B

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