X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain.h;h=e4d62e29ee87d682a58c2eeb9386562b62709738;hb=4b5302fe73b9aa08819ff740bbf8286352a990fb;hp=cd6e6c0657e950b173c2fff4f75c334f246d62ce;hpb=aafa0cb49e7ec8600dad902411de6e76e111c939;p=plomrogue diff --git a/src/main.h b/src/main.h index cd6e6c0..e4d62e2 100644 --- a/src/main.h +++ b/src/main.h @@ -6,10 +6,8 @@ #ifndef MAIN_H #define MAIN_H - - #include /* for uint32_t*/ -#include "keybindings.h" +#include "keybindings.h" /* for KeyBiData struct */ struct WinMeta; struct WinConf; struct Win; @@ -37,8 +35,9 @@ struct World uint8_t map_obj_count; /* Counts map objects generated so far. */ struct MapObjDef * map_obj_defs; /* Map object type definitions chain. */ struct MapObj * map_objs; /* Pointer to map objects chain start. */ - struct MapObj * last_map_obj; /* Pointer to map objects chain end. */ -}; + uint8_t inventory_select; /* Player's inventory selection index. */ + uint8_t old_inventory_select; /* Temporarily stores for recordfile */ +} world; /* writing inventory selection index. */