X-Git-Url: https://plomlompom.com/repos/processes?a=blobdiff_plain;f=src%2Fmain.h;h=687dfc8e97f075ee4bb03d2daad8c388e4565411;hb=2dccba703435158681552b8a8aefccab79eb13f3;hp=e4d62e29ee87d682a58c2eeb9386562b62709738;hpb=42f6cd9789e06f0257a078a33fa13aaea0714fce;p=plomrogue diff --git a/src/main.h b/src/main.h index e4d62e2..687dfc8 100644 --- a/src/main.h +++ b/src/main.h @@ -14,6 +14,7 @@ struct Win; struct Map; struct MapObjDef; struct MapObj; +struct MapObjAct; @@ -36,8 +37,8 @@ struct World struct MapObjDef * map_obj_defs; /* Map object type definitions chain. */ struct MapObj * map_objs; /* Pointer to map objects chain start. */ uint8_t inventory_select; /* Player's inventory selection index. */ - uint8_t old_inventory_select; /* Temporarily stores for recordfile */ -} world; /* writing inventory selection index. */ + struct MapObjAct * map_obj_acts; /* Pointer to map object actions chain. */ +} world;