X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fworld.h;h=5d5017317991abb586d4548ffad9ba234a360b46;hb=891ba8fbca53d920f6b3704827fa6b8aee737de4;hp=508d1af53ab9fa300c9fae27564ced3757cff080;hpb=c53b42dfc7e4de104f9189428dd5b9a0d431c00a;p=plomrogue diff --git a/src/client/world.h b/src/client/world.h index 508d1af..5d50173 100644 --- a/src/client/world.h +++ b/src/client/world.h @@ -9,7 +9,7 @@ #include /* uint8_t, uint16_t */ #include /* FILE */ #include /* time_t */ -#include "map.h" /* struct Map */ +#include "../common/map.h" /* struct Map */ #include "../common/yx_uint8.h" /* struct yx_uint8 */ #include "keybindings.h" /* stuct KeyBindingDB */ #include "command_db.h" /* struct CommandDB */ @@ -38,6 +38,7 @@ struct World uint8_t player_inventory_select; /* index of selected item in inventory */ uint8_t player_lifepoints; /* how alive the player is */ uint8_t winch; /* if set, SIGWINCH was registered; trigger reset_windows()*/ + uint8_t focus_each_turn; /* if !0, re-focus map on player each new turn */ };