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/GlobalQuest.h

    r2092 r2093  
    4848    class GlobalQuest : public Quest
    4949    {
    50         public:
     50        public:
    5151            GlobalQuest(BaseObject* creator);
    52             virtual ~GlobalQuest();
     52            virtual ~GlobalQuest();
    5353
    54             virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
     54            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    5555
    56         protected:
     56        protected:
    5757            virtual bool isStartable(const Player* player) const; //!< Checks whether the quest can be started.
    5858            virtual bool isFailable(const Player* player) const; //!< Checks whether the quest can be failed.
    5959            virtual bool isCompletable(const Player* player) const; //!< Checks whether the quest can be completed.
    6060
    61             virtual questStatus::Enum getStatus(const Player* player) const; //!< Returns the status of the quest for a specific player.
    62             virtual bool setStatus(Player* player, const questStatus::Enum & status); //!< Sets the status for a specific player.
     61            virtual questStatus::Enum getStatus(const Player* player) const; //!< Returns the status of the quest for a specific player.
     62            virtual bool setStatus(Player* player, const questStatus::Enum & status); //!< Sets the status for a specific player.
    6363
    64         private:
     64        private:
    6565            std::set<Player*> players_; //!< The set of players which possess this quest.
    6666            questStatus::Enum status_; //!< The status of this quest.
Note: See TracChangeset for help on using the changeset viewer.