home · contact · privacy
Make resize_active_win use yx_uint16 for coordinates instead of two separate ints.
[plomrogue] / src / draw_wins.h
1 #ifndef DRAW_WINS_H
2 #define DRAW_WINS_H
3
4 #include <stdint.h>
5
6 struct Win;
7
8 void draw_with_linebreaks (struct Win *, char *, uint16_t);
9 void draw_text_from_bottom (struct Win *, char *);
10 void draw_log_win (struct Win *);
11 void draw_map_win (struct Win *);
12 void draw_info_win (struct Win *);
13 void draw_keys_win (struct Win *);
14
15 #endif