X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmain.h;h=cd6e6c0657e950b173c2fff4f75c334f246d62ce;hb=5d8fc2d8efb2cf22d27051df09b63c852541db83;hp=a2900997a76873ec6a66ab7b87fd2eb8050bb418;hpb=fb8ddca6abc66eb7e52a007850689309b4cda938;p=plomrogue diff --git a/src/main.h b/src/main.h index a290099..cd6e6c0 100644 --- a/src/main.h +++ b/src/main.h @@ -34,10 +34,10 @@ struct World struct WinMeta * wmeta; /* Pointer to window manager's WinMeta. */ struct WinConf * winconfs; /* Pointer to windows' configurations. */ char * winconf_ids; /* Pointer to string of Winconfs' ids. */ - struct Player * player; /* Pointer to the player data. */ 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; /* Map objects chain. */ + struct MapObj * map_objs; /* Pointer to map objects chain start. */ + struct MapObj * last_map_obj; /* Pointer to map objects chain end. */ };