|
- /* Solmyr - H3M manager
- * Copyright (C) 2009 Xavier Gendre
- *
- * This file is part of Solmyr.
- *
- * Solmyr is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Solmyr is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Solmyr. If not, see <http://www.gnu.org/licenses/>.
- */
-
- #ifndef H_XG_FILTER_2408091919
- #define H_XG_FILTER_2408091919
-
- #include <glibmm/ustring.h>
-
- namespace Solmyr
- {
-
- class Filter
- {
- public:
- Filter();
- virtual ~Filter() {}
-
- guint32 version;
- guint32 size;
- guint8 difficulty;
- int underground;
- guint8 victory;
- guint8 loss;
- int allies;
- guint8 player_nb;
- guint8 player_sg;
- guint8 human_nb;
- guint8 human_sg;
- };
-
- }
-
- #endif // H_XG_FILTER_2408091919
|