for( index = 1; index < 3; index++ ) {
    it = Game::getAttackersBegin( index );
    end = Game::getAttackersEnd( index );
    for( ; it != end; ++it ) {
        (*it)->Update();
    }
}