Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 25, 2008, 8:19:40 PM (16 years ago)
Author:
landauf
Message:

renamed LevelInfo as Level

File:
1 moved

Legend:

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

    r2010 r2012  
    2727 */
    2828
    29 #ifndef _LevelInfo_H__
    30 #define _LevelInfo_H__
     29#ifndef _Level_H__
     30#define _Level_H__
    3131
    3232#include "OrxonoxPrereqs.h"
     
    4141namespace orxonox
    4242{
    43     class _OrxonoxExport LevelInfo : public Info, public network::ClientConnectionListener
     43    class _OrxonoxExport Level : public Info, public network::ClientConnectionListener
    4444    {
    4545        public:
    46             LevelInfo();
    47             virtual ~LevelInfo() {}
     46            Level();
     47            virtual ~Level() {}
    4848
    4949            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
     
    7272                { return this->rootGametype_; }
    7373
    74             static LevelInfo* getActiveLevelInfo();
     74            static Level* getActiveLevel();
    7575            static void listPlayers();
    7676            static PlayerInfo* getClient(unsigned int clientID);
     
    8080            virtual void clientDisconnected(unsigned int clientID);
    8181
    82             void applyXMLFile();
     82            void networkcallback_applyXMLFile();
    8383
    84             void applySkybox()
     84            void networkcallback_applySkybox()
    8585                { this->setSkybox(this->skybox_); }
    86             void applyAmbientLight()
     86            void networkcallback_applyAmbientLight()
    8787                { this->setAmbientLight(this->ambientLight_); }
    8888
     
    9898}
    9999
    100 #endif /* _LevelInfo_H__ */
     100#endif /* _Level_H__ */
Note: See TracChangeset for help on using the changeset viewer.