00001 /* 00002 * Copyright (C) 2004 Ivo Danihelka (ivo@danihelka.net) 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 */ 00009 #include "LevelDesc.h" 00010 00011 //----------------------------------------------------------------- 00012 LevelDesc::LevelDesc(const std::string &lang, 00013 const std::string &levelname, 00014 const std::string &desc) 00015 : Dialog(lang, "", desc) 00016 { 00017 m_levelname = levelname; 00018 } 00019