Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 1, 2008, 9:03:51 PM (16 years ago)
Author:
landauf
Message:

converted tabs to spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/quest/QuestManager.h

    r2092 r2093  
    4949    {
    5050
    51         public:
    52             QuestManager(BaseObject* creator);
    53             virtual ~QuestManager();
     51        public:
     52            QuestManager(BaseObject* creator);
     53            virtual ~QuestManager();
    5454
    55             static bool registerQuest(Quest* quest); //!< Registers a quest in the QuestManager.
    56             static bool registerHint(QuestHint* quest); //!< Registers a QuestHint in the QuestManager.
     55            static bool registerQuest(Quest* quest); //!< Registers a quest in the QuestManager.
     56            static bool registerHint(QuestHint* quest); //!< Registers a QuestHint in the QuestManager.
    5757
    58             static Quest* findQuest(const std::string & questId); //!< Returns the quest with the input id.
    59             static QuestHint* findHint(const std::string & hintId); //!< Returns the QuestHint with the input id.
     58            static Quest* findQuest(const std::string & questId); //!< Returns the quest with the input id.
     59            static QuestHint* findHint(const std::string & hintId); //!< Returns the QuestHint with the input id.
    6060
    61         private:
    62             static std::map<std::string, Quest*> questMap_; //!< All quests registered by their id's.
    63             static std::map<std::string, QuestHint*> hintMap_; //!< All hints registered by their id's.
     61        private:
     62            static std::map<std::string, Quest*> questMap_; //!< All quests registered by their id's.
     63            static std::map<std::string, QuestHint*> hintMap_; //!< All hints registered by their id's.
    6464
    6565    };
Note: See TracChangeset for help on using the changeset viewer.