DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ Invert()

void array< Class T >::Invert ( )
inlineprivate

См. определение в файле EnScript.c строка 608

609 {
610 int left = 0;
611 int right = Count() - 1;
612 if (right > 0)
613 {
614 while (left < right)
615 {
616 T temp = Get(left);
617 Set(left++, Get(right));
618 Set(right--, temp);
619 }
620 }
621 }
override float Get()
Определения PlayerStatBase.c:134
Result for an object found in CGame.IsBoxCollidingGeometryProxy.
proto void Set(int n, T value)
proto native int Count()

Перекрестные ссылки Count, Get() и Set().