1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2024-09-19 22:14:48 +01:00
notnotdnethack/win/curses/cursinit.h
demogorgon22 7899e74616 Attempt to enable a species menu for selecting ent and half dragon species.
I am worried this isn't right. This is going to cause me pain later. Also show hlf species on the welcome menu.
2023-07-28 17:43:33 -04:00

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 */