File indexing completed on 2024-12-01 03:48:51
0001 /* This file is part of KsirK. 0002 Copyright (C) 2001-2007 Gael de Chalendar <kleag@free.fr> 0003 0004 KsirK is free software; you can redistribute it and/or 0005 modify it under the terms of the GNU General Public 0006 License as published by the Free Software Foundation, either version 2 0007 of the License, or (at your option) any later version. 0008 0009 This program is distributed in the hope that it will be useful, 0010 but WITHOUT ANY WARRANTY; without even the implied warranty of 0011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 0012 General Public License for more details. 0013 0014 You should have received a copy of the GNU General Public License 0015 along with this program; if not, write to the Free Software 0016 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 0017 02110-1301, USA 0018 */ 0019 0020 /** 0021 * @file This header defines data that are defined here to ease their change 0022 * begin : dim sep 15 2002 0023 */ 0024 0025 #ifndef KSIRK_GLOBAL_H 0026 #define KSIRK_GLOBAL_H 0027 0028 #define ONU_FILE_FORMAT_VERSION "3.0" 0029 #define SAVE_GAME_FILE_FORMAT_VERSION "1.6" 0030 0031 #define ID_NO_STATUS_MSG 0 0032 #define ID_STATUS_MSG 1 0033 #define ID_STATUS_MSG2 2 0034 0035 #define CM_CANCEL "Images/cancel.png" 0036 #define CM_INFO "Images/aide.png" 0037 #define CM_NEWGAME "Images/nouveauJeu.png" 0038 #define CM_NEWNETGAME "Images/newNetGame.png" 0039 #define CM_OPENGAME "Images/ouvrirJeu.png" 0040 #define CM_SAVEGAME "Images/saveGame.png" 0041 #define CM_EXITGAME "Images/quitter.png" 0042 #define CM_RECYCLING "Images/recycling.png" 0043 #define CM_NEXTPLAYER "Images/nextPlayer.png" 0044 #define CM_RECYCLINGFINISHED "Images/recyclingFinished.png" 0045 #define CM_ATTACK1 "Images/attackOne.png" 0046 #define CM_ATTACK2 "Images/attackTwo.png" 0047 #define CM_ATTACK3 "Images/attackThree.png" 0048 #define CM_DEFENSE1 "Images/defendOne.png" 0049 #define CM_DEFENSE2 "Images/defendTwo.png" 0050 #define CM_SHIFT "Images/moveArmies.png" 0051 #define CM_INVADE1 "Images/moveOne.png" 0052 #define CM_INVADE5 "Images/moveFive.png" 0053 #define CM_INVADE10 "Images/moveTen.png" 0054 #define CM_RETREAT1 "Images/moveBackOne.png" 0055 #define CM_RETREAT5 "Images/moveBackFive.png" 0056 #define CM_RETREAT10 "Images/moveBackTen.png" 0057 #define CM_INVASIONFINISHED "Images/moveFinish.png" 0058 #define CM_PREFERENCES "Images/preferences.png" 0059 0060 #endif // KSIRK_GLOBAL_H 0061