Esempio n. 1
0
void Battle::SetLocalMap( const std::string& mapname )
{
	IBattle::SetLocalMap( mapname);
    if ( IsFounderMe() )  LoadMapDefaults(mapname);
}
Esempio n. 2
0
void Battle::SetLocalMap( const UnitSyncMap& map )
{
	IBattle::SetLocalMap( map );
	if ( IsFounderMe() )  LoadMapDefaults( map.name );
}
Esempio n. 3
0
void Battle::SetLocalMap( const LSL::UnitsyncMap& map )
{
	IBattle::SetLocalMap( map );
    if ( IsFounderMe() )  LoadMapDefaults( TowxString(map.name) );
}