mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2024-11-22 01:05:03 +00:00
7899e74616
I am worried this isn't right. This is going to cause me pain later. Also show hlf species on the welcome menu.
17 lines
542 B
C
17 lines
542 B
C
/* vim:set cin ft=c sw=4 sts=4 ts=8 et ai cino=Ls\:0t0(0 : -*- mode:c;fill-column:80;tab-width:8;c-basic-offset:4;indent-tabs-mode:nil;c-file-style:"k&r" -*-*/
|
|
|
|
#ifndef CURSINIT_H
|
|
# define CURSINIT_H
|
|
|
|
/* Global declarations */
|
|
|
|
void curses_create_main_windows(void);
|
|
void curses_init_nhcolors(void);
|
|
void curses_choose_character(void);
|
|
int curses_character_dialog(const char **choices, const char *prompt, boolean);
|
|
void curses_init_options(void);
|
|
void curses_display_splash_window(void);
|
|
void curses_cleanup(void);
|
|
|
|
|
|
#endif /* CURSINIT_H */
|