X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmisc.h;h=831c4d1170d32374c73b04b38f10ecf8a69c1f93;hb=cff4ca6783209fdf4272ae83b23b18e7ddf2a4df;hp=5101e473521916bbfa16aa24c40249d8240f0f30;hpb=ec5c4edd169be8fe8c778cabdfc7ada665629ffd;p=plomrogue diff --git a/src/misc.h b/src/misc.h index 5101e47..831c4d1 100644 --- a/src/misc.h +++ b/src/misc.h @@ -37,6 +37,13 @@ extern void check_files_xor(char * p1, char * p2, struct World * w); +/* Save / load / unload (free) interface configuration data. */ +extern void save_interface_conf(struct World * world); +extern void load_interface_conf(struct World * world); +extern void unload_interface_conf(struct World * world); + + + /* Update game log by appending "text", or by appending a "." if "text" is the * same as the last one passed. */ @@ -44,11 +51,11 @@ extern void update_log(struct World * world, char * text); -/* Return the offset necessary to center "map" on position "pos" in a frame of - * "framesize. +/* Return the offset necessary to center a map of "mapsize" on position "pos" in + * a frame of "framesize. */ -extern uint16_t center_offset(uint16_t pos, uint16_t mapsize, - uint16_t framesize); +extern uint16_t center_offset(uint16_t pos, + uint16_t mapsize, uint16_t framesize);