forked from a1batross/Paranoia2_original
39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
/*
|
|
menu_strings.h - custom menu strings
|
|
Copyright (C) 2011 Uncle Mike
|
|
|
|
This program 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.
|
|
|
|
This program 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.
|
|
*/
|
|
|
|
#define HINT_DISPLAYMODE 132
|
|
#define HINT_REVERSE_MOUSE 171
|
|
#define HINT_MOUSE_SENSE 184
|
|
#define HINT_RESUME_GAME 188
|
|
#define HINT_NEWGAME 189
|
|
#define HINT_HAZARD_COURSE 190
|
|
#define HINT_LOADGAME 191
|
|
#define HINT_SAVELOADGAME 192
|
|
#define HINT_CONFIGURATION 193
|
|
#define HINT_QUIT_BUTTON 196
|
|
#define HINT_MULTIPLAYER 198
|
|
#define HINT_SKILL_EASY 200
|
|
#define HINT_SKILL_NORMAL 201
|
|
#define HINT_SKILL_HARD 202
|
|
#define HINT_RESTART_HZ 234
|
|
#define HINT_QUIT_ACTIVE 235
|
|
#define HINT_QUIT 236
|
|
#define HINT_RESTART_GAME 240
|
|
#define HINT_PREVIEWS_TEXT 400
|
|
#define HINT_PREVIEWS_CMD 402 // this buton will execute program or open HTML-window
|
|
#define HINT_CUSTOM_GAME 530
|
|
#define HINT_MAXSTRINGS 551 // 550 strings allowed
|
|
|
|
extern char *MenuStrings[HINT_MAXSTRINGS]; |