Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 17, 2010, 10:50:43 PM (14 years ago)
Author:
dafrick
Message:

Resolving some TODOs and doing some additional cleanup. Almost done now…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/questsystem/Quest.h

    r7456 r7552  
    4444namespace orxonox // tolua_export
    4545{ // tolua_export
     46
     47    /**
     48    @brief
     49        Different states of a @ref orxonox::Quest "Quest".
     50
     51    @ingroup Questsystem
     52    */
    4653    namespace QuestStatus
    4754    {
    48         //! Different states of a @ref orxonox::Quest "Quest".
    4955        enum Value
    5056        {
    51             Inactive,
    52             Active,
    53             Failed,
    54             Completed
     57            Inactive, //!< The @ref orxonox::Quest "Quest" is inactive.
     58            Active, //!< The @ref orxonox::Quest "Quest" is active.
     59            Failed, //!< The @ref orxonox::Quest "Quest" has been failed.
     60            Completed //!< The @ref orxonox::Quest "Quest" has been completed.
    5561        };
    5662    }
     
    6672
    6773        Quest itself should not be instantiated, if you want to create a quest either use LocalQuest or GlobalQuest, whichever suits you needs better.
     74
    6875    @author
    6976        Damian 'Mozork' Frick
     77
     78    @ingroup Questsystem
    7079    */
    7180    class _QuestsystemExport Quest // tolua_export
Note: See TracChangeset for help on using the changeset viewer.