Index

ncurses-minesweeper / 48085a2

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
4918 Oct 2021 15:555abfbc6Add functionality to enter help screen during gameJosh Stockin120G

Blob @ ncurses-minesweeper / src / strings.h

text/plain1290 bytesdownload raw
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
15extern const char *copyright_line;
16
17extern const char *title_screen_splash[7];
18extern const char *title_screen_splash_small[5];
19
20extern const char *title_screen_splash_text;
21extern const char *title_screen_buttons[5];
22
23extern const char *game_help_note;
24
25extern const char *about_screen_title;
26extern const char *about_website_source;
27extern const char *about_website_home;
28extern const char *about_screen_back;
29
30extern const char *help_screen_title;
31#define HELP_SCREEN_INFO_LEN 13
32extern const char *help_screen_info[HELP_SCREEN_INFO_LEN];
33extern const char *help_screen_back;
34
35extern const char *options_screen_title;
36extern const char *options_screen_width;
37extern const char *options_screen_height;
38extern const char *options_screen_minecount;
39extern const char *options_screen_back;
40
41#endif
42