Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/bindermFS16/src/orxonox/LevelStatus.cc @ 11188

Last change on this file since 11188 was 11188, checked in by binderm, 8 years ago
File size: 709 bytes
Line 
1
2
3#include "LevelStatus.h"
4
5#include <map>
6
7#include "core/singleton/ScopedSingletonIncludes.h"
8#include "core/commandline/CommandLineIncludes.h"
9#include "core/config/ConfigValueIncludes.h"
10#include "core/CoreIncludes.h"
11#include "core/ClassTreeMask.h"
12#include "core/Loader.h"
13#include "core/Resource.h"
14#include "core/XMLFile.h"
15#include "Level.h"
16#include "PlayerManager.h"
17
18namespace orxonox
19{
20    RegisterClass(LevelStatus);
21
22    LevelStatus::LevelStatus(Context* context) : BaseObject(context)
23    {
24        RegisterObject(LevelStatus);
25        this->won = false;
26        this->nextLevels.insert(this->nextLevels.begin(),1);
27        this->activated=0;
28    }
29
30    LevelStatus::~LevelStatus()
31    {}
32
33
34}
Note: See TracBrowser for help on using the repository browser.