Merge branch 'NetHack-3.6'

This commit is contained in:
nhmall
2019-07-14 09:39:24 -04:00
18 changed files with 511 additions and 41 deletions

View File

@@ -404,6 +404,17 @@ struct early_opt {
boolean valallowed;
};
struct ptr_array {
size_t length;
size_t max_length;
void ** elements;
};
typedef struct ptr_array ptr_array_t;
/* logging verbosity levels */
#define LOG_MINIMAL 0
#define LOG_VERBOSE 1
/* special key functions */
enum nh_keyfunc {
NHKF_ESC = 0,