Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 12, 2008, 1:29:33 PM (15 years ago)
Author:
dafrick
Message:

Just changed some small stuff…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/questsystem2/src/orxonox/objects/quest/AddQuestHint.h

    r2159 r2191  
    4646    /**
    4747    @brief
    48         Adds a QuestHint, resp. activates the QuestHint of the given id for the player the effect is invoked on.
     48        Adds a QuestHint, resp. activates the QuestHint of the given id for the player the QuestEffect is invoked on.
    4949    @author
    5050        Damian 'Mozork' Frick
     
    5858            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a AddQuestHint object through XML.
    5959
    60             virtual bool invoke(ControllableEntity* player); //!< Invokes the effect.
     60            virtual bool invoke(ControllableEntity* player); //!< Invokes the QuestEffect.
    6161
    6262        private:
    6363            std::string hintId_; //!< The id of the QuestHint.
    6464
    65             inline const std::string & getHintId(void) const //!< Returns the if of the hint.
     65            /**
     66            @brief Returns the id of the QuestHint.
     67            @return Returns the id of the QuestHint.
     68            */
     69            inline const std::string & getHintId(void) const
    6670                { return this->hintId_; }
    67             void setHintId(const std::string & id); //!< Sets the id of the hint.
     71            bool setHintId(const std::string & id); //!< Sets the id of the QuestHint.
    6872
    6973    };
Note: See TracChangeset for help on using the changeset viewer.