00001 #ifndef HEADER_LEVELDESC_H 00002 #define HEADER_LEVELDESC_H 00003 00004 #include "Dialog.h" 00005 00006 /** 00007 * Multi lang. level description. 00008 */ 00009 class LevelDesc : public Dialog { 00010 private: 00011 std::string m_levelname; 00012 public: 00013 LevelDesc(const std::string &lang, 00014 const std::string &levelname, 00015 const std::string &desc); 00016 std::string getLevelName() const { return m_levelname; } 00017 std::string getDesc() const { return getSubtitle(); } 00018 }; 00019 00020 #endif 00021