home · contact · privacy
Moved initialization of map object definitions from defs file into map_objects library.
[plomrogue] / src / misc.h
1 #ifndef MISC_H
2 #define MISC_H
3
4 #include <stdint.h>
5 #include <stdio.h>
6 #include "yx_uint16.h"
7
8 struct World;
9 struct WinMeta;
10 struct Win;
11 struct Map;
12
13 extern void textfile_sizes (FILE *, uint16_t *, uint16_t *);
14 extern uint16_t rrand(char, uint32_t);
15 extern void update_log (struct World *, char *);
16 extern uint16_t center_offset (uint16_t, uint16_t, uint16_t);
17 extern void turn_over (struct World *, char);
18 extern void save_game(struct World *);
19 extern void toggle_window (struct WinMeta *, struct Win *);
20 extern void scroll_pad (struct WinMeta *, char);
21 extern void growshrink_active_window (struct WinMeta *, char);
22 extern struct yx_uint16 find_passable_pos (struct Map *);
23 extern unsigned char meta_keys(int, struct World *, struct WinMeta *, struct Win *, struct Win *, struct Win *, struct Win *);
24
25 #endif