EnemiesManager.PauseAll C# (CSharp) Method

PauseAll() private static method

private static PauseAll ( bool isPause ) : void
isPause bool
return void
    private static void PauseAll (bool isPause)
    {
        Logger.Log("EnemiesManager::Pausell("+isPause+")", Logger.Level.DEBUG);
        foreach (BigBadGuy bbg in _enemies) {
            if(null != bbg) {
                bbg.Pause (isPause);
            }
        }
        paused = isPause;
    }
}