-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterminal_rpg_options.h
35 lines (31 loc) · 995 Bytes
/
terminal_rpg_options.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* =====================================================================================
*
* Filename: terminal_rpg_options.h
*
* Description:
*
* Version: 1.0
* Created: 02/05/2019 08:31:09 PM
* Revision: none
* Compiler: gcc
*
* Author: Miguel Fernandes
* Organization:
*
* =====================================================================================
*/
#ifndef TERMINAL_RPG_OPTIONS
#define TERMINAL_RPG_OPTIONS
int controls ();
int options ();
int options_def_longest_str ();
int options_handling (int argc, int highlight);
int options_handling_music (int argc, int highlight, int option);
int options_write (int argc, const int highlight);
int options_write_music (int argc, const int highlight, int option);
int options_write_music_volume (const int highlight, int row, int col);
int quit ();
int quit_handling (int highlight);
int quit_write (const int highlight);
#endif /* ifndef TERMINAL_RPG_OPTIONS */