| 1 | /* ncurses-minesweeper Copyright (c) 2021 Joshua 'joshuas3' Stockin |
| 2 | * <https://joshstock.in> |
| 3 | * <https://git.joshstock.in/ncurses-minesweeper> |
| 4 | * |
| 5 | * This software is licensed and distributed under the terms of the MIT License. |
| 6 | * See the MIT License in the LICENSE file of this project's root folder. |
| 7 | * |
| 8 | * This comment block and its contents, including this disclaimer, MUST be |
| 9 | * preserved in all copies or distributions of this software's source. |
| 10 | */ |
| 11 |
|
| 12 | #ifndef STRINGS_H |
| 13 | #define STRINGS_H |
| 14 |
|
| 15 | extern const char *copyright_line; |
| 16 |
|
| 17 | extern const char *title_screen_splash[7]; |
| 18 | extern const char *title_screen_splash_small[5]; |
| 19 |
|
| 20 | extern const char *title_screen_splash_text; |
| 21 | extern const char *title_screen_buttons[5]; |
| 22 |
|
| 23 | extern const char *game_help_note; |
| 24 |
|
| 25 | extern const char *about_screen_title; |
| 26 | extern const char *about_website_source; |
| 27 | extern const char *about_website_home; |
| 28 | extern const char *about_screen_back; |
| 29 |
|
| 30 | extern const char *help_screen_title; |
| 31 | #define HELP_SCREEN_INFO_LEN 13 |
| 32 | extern const char *help_screen_info[HELP_SCREEN_INFO_LEN]; |
| 33 | extern const char *help_screen_back; |
| 34 |
|
| 35 | extern const char *options_screen_title; |
| 36 | extern const char *options_screen_width; |
| 37 | extern const char *options_screen_height; |
| 38 | extern const char *options_screen_minecount; |
| 39 | extern const char *options_screen_back; |
| 40 |
|
| 41 | #endif |
| 42 |
|