Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_AIDecoTestIsLeader.c
Go to the documentation of this file.
1 class SCR_AIDecoTestIsLeader : DecoratorTestScripted
2 {
3  override protected bool TestFunction(AIAgent agent, IEntity controlled)
4  {
5  AIGroup group = AIGroup.Cast(agent.GetParentGroup());
6 
7  if (!group)
8  return false;
9 
10  return group.GetLeaderAgent() == agent;
11  }
12 };
SCR_AIDecoTestIsLeader
Definition: SCR_AIDecoTestIsLeader.c:1