Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 20, 2009, 12:23:51 AM (15 years ago)
Author:
dafrick
Message:

Small changes in QuestManager for the GUI. Added toggleVisibility command to OrxonoxOverlay.

File:
1 edited

Legend:

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

    r2963 r2993  
    5555    {
    5656        const QuestDescription* description;
     57        std::string status;
    5758        HintContainer* hint;
    5859        QuestContainer* subQuests;
     
    9394            QuestContainer* getQuestTree(std::string & name); // tolua_export
    9495
    95             static void toggleQuestGUI(void); //!< Opens the GUI.
    96 
    9796        private:
    9897            static QuestManager* singletonRef_s;
    99             static bool GUIOpen;
    10098
    10199            std::map<std::string, Quest*> questMap_; //!< All Quests registered by their id's.
     
    103101
    104102            void getRootQuests(const PlayerInfo* player, std::list<Quest*> & list);
    105             void addHints(QuestContainer* container, Quest* quest, const PlayerInfo* player);
    106             void addSubQuests(QuestContainer* container, Quest* quest, const PlayerInfo* player);
     103            HintContainer* addHints(Quest* quest, const PlayerInfo* player);
     104            QuestContainer* addSubQuest(Quest* quest, const PlayerInfo* player);
    107105
    108106    }; // tolua_export
Note: See TracChangeset for help on using the changeset viewer.