Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 9, 2008, 8:46:26 PM (16 years ago)
Author:
landauf
Message:

moved Level from objects/infos to objects, because it's no longer called "LevelInfo"

Location:
code/branches/objecthierarchy/src/orxonox/objects
Files:
2 moved

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/orxonox/objects/Level.cc

    r2168 r2169  
    3838#include "Settings.h"
    3939#include "LevelManager.h"
    40 #include "PlayerInfo.h"
     40#include "objects/infos/PlayerInfo.h"
    4141#include "objects/gametypes/Gametype.h"
    4242#include "overlays/OverlayGroup.h"
     
    4848    CreateFactory(Level);
    4949
    50     Level::Level(BaseObject* creator) : Info(creator)
     50    Level::Level(BaseObject* creator) : BaseObject(creator), Synchronisable(creator)
    5151    {
    5252        RegisterObject(Level);
  • code/branches/objecthierarchy/src/orxonox/objects/Level.h

    r2167 r2169  
    3232#include "OrxonoxPrereqs.h"
    3333
    34 #include "Info.h"
     34#include "network/Synchronisable.h"
     35#include "core/BaseObject.h"
    3536
    3637namespace orxonox
    3738{
    38     class _OrxonoxExport Level : public Info
     39    class _OrxonoxExport Level : public BaseObject, public Synchronisable
    3940    {
    4041        public:
Note: See TracChangeset for help on using the changeset viewer.