Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 23, 2011, 2:14:29 PM (13 years ago)
Author:
eceline
Message:

level file added

Location:
code/branches/spaceraceTwo/src/modules/gametypes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/spaceraceTwo/src/modules/gametypes/SpaceRace.cc

    r8940 r8944  
    4646        RegisterObject(SpaceRace);
    4747       
     48         const std::string& message = "SpaceRace constructed";
     49         orxout()<< message << endl;
     50   
    4851        this->bTimeIsUp_ = false;
    4952        this->numberOfBots_ = 0;
     
    5255       for (std::map<PlayerInfo*, Player>::iterator it = this->players_.begin(); it != this->players_.end(); ++it)
    5356        {this->checkpointReached_[it->first]=0;}
     57       
     58       
    5459    }
    5560   
     
    9297
    9398    void SpaceRace::start()
    94     {
    95                            this->spawnPlayersIfRequested(); Gametype::checkStart();
     99    {
     100                Gametype::start();
     101                           this->spawnPlayersIfRequested(); //Gametype::checkStart();
    96102                           this->cantMove_=true;
    97103         
  • code/branches/spaceraceTwo/src/modules/gametypes/SpaceRaceManager.cc

    r8940 r8944  
    4545    {
    4646        RegisterObject(SpaceRaceManager);
    47                
     47         
     48          const std::string& message = "SpaceRaceManager constructed";
     49         orxout()<< message << endl;     
    4850    }
    4951
Note: See TracChangeset for help on using the changeset viewer.