Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8677 in orxonox.OLD for branches/gui/src/story_entities/campaign.cc


Ignore:
Timestamp:
Jun 21, 2006, 4:49:06 PM (18 years ago)
Author:
bensch
Message:

new gui implementing work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/story_entities/campaign.cc

    r7283 r8677  
    8282  this->bReturnToMenu = false;
    8383  this->run();
     84
     85  return true;
    8486}
    8587
     
    9092bool Campaign::pause()
    9193{
    92   this->bPaused = true;
     94  return (this->bPaused = true);
    9395}
    9496
     
    100102{
    101103  PRINTF(4)("Resuming the current Campaign\n");
    102   this->bPaused = false;
     104  return (this->bPaused = false);
    103105}
    104106
     
    118120    this->currentEntity->stop();
    119121  }
     122
     123  return true;
    120124}
    121125
     
    127131{
    128132  ErrorMessage       errorCode;
    129   int                storyID = WORLD_ID_0;
     133//  int                storyID = WORLD_ID_0;
    130134
    131135  for( this->currentEntity = this->campaignData->getFirstLevel(), this->bRunning = true;
Note: See TracChangeset for help on using the changeset viewer.