public bool IsIgnoreObstaclesDuringBarrelRoll()
        {
            bool result = false;

            OnCheckIgnoreObstaclesDuringBarrelRoll?.Invoke(ref result);

            return(result);
        }
Exemplo n.º 2
0
        public bool CanPerformRedManeuverWhileStressed()
        {
            bool result = false;

            OnTryCanPerformRedManeuverWhileStressed?.Invoke(ref result);

            return(result);
        }
        public bool IsIgnoreObstaclesDuringBoost()
        {
            bool result = false;

            OnCheckIgnoreObstaclesDuringBoost?.Invoke(ref result);

            return(result);
        }