Index

ncurses-minesweeper / 13c4747

Terminal game of Minesweeper, implemented in C with ncurses.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
4717 Oct 2021 18:2013c4747Add about page; Update input methods; Add central strings fileJosh Stockin1390G

Blob @ ncurses-minesweeper / src / strings.h

text/plain1257 bytesdownload raw
1/* ncurses-minesweeper Copyright (c) 2021 Joshua 'joshuas3' Stockin
2 * <https://joshstock.in>
3 * <https://github.com/JoshuaS3/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 *about_screen_title;
24extern const char *about_website_source;
25extern const char *about_website_home;
26extern const char *about_screen_back;
27
28extern const char *help_screen_title;
29#define HELP_SCREEN_INFO_LEN 13
30extern const char *help_screen_info[HELP_SCREEN_INFO_LEN];
31extern const char *help_screen_back;
32
33extern const char *options_screen_title;
34extern const char *options_screen_width;
35extern const char *options_screen_height;
36extern const char *options_screen_minecount;
37extern const char *options_screen_back;
38
39#endif
40