X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fdraw_wins.h;h=4b8574b50ad408ffc093324f02b20ea31e256b44;hb=f21d01eb14c3b3ac09463de3e573dd99e002fe3d;hp=79cc03d42c88943be1fc385584f9974962f55a8e;hpb=289cfa930b552dbe0a1755a1153a792280db3b54;p=plomrogue diff --git a/src/draw_wins.h b/src/draw_wins.h index 79cc03d..4b8574b 100644 --- a/src/draw_wins.h +++ b/src/draw_wins.h @@ -12,34 +12,16 @@ struct Win; -/* Write "text" into window "win". Start on row "start_y". Fill unused rows with - * whitespace. - */ -extern void draw_with_linebreaks(struct Win * win, char * text, - uint16_t start_y); - - - -/* Write "text" not starting from the top but from the bottom of "win". */ -extern void draw_text_from_bottom(struct Win * win, char * text); - - /* Write game log text into "win" from bottom to top. */ extern void draw_log_win(struct Win * win); - - /* Draw game map and actors/objects on it into "win". Respect scroll offset. */ extern void draw_map_win(struct Win * win); - - /* Draw into "win" the game / player status infos. */ extern void draw_info_win(struct Win * win); - - /* Draw keybindings selection/manipulation menu. */ extern void draw_keys_win(struct Win * win);