Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_AIDecoTestCharacterWounded.c
Go to the documentation of this file.
1/*
2Returns true character is wounded.
3*/
5{
6 protected override bool TestFunction(AIAgent agent, IEntity controlled)
7 {
8 if (!controlled)
9 return false;
10
11 return SCR_AIDamageHandling.IsCharacterWounded(controlled);
12 }
13};
override bool TestFunction(AIAgent agent, IEntity controlled)