1 | /* ncurses-minesweeper Copyright (c) 2020 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 DRAW_PAGES_H |
13 | #define DRAW_PAGES_H |
14 |
|
15 | #include "../state.h" |
16 |
|
17 | int draw_title_screen(game_state *state, int ch); |
18 | int draw_game(game_state *state, int ch); |
19 | int draw_options_screen(game_state *state, int ch); |
20 | int draw_help_screen(game_state *state, int ch); |
21 |
|
22 | #endif |
23 |
|