X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmain.h;h=792f29477777288025bdfcaba0b715807f7c1fc1;hb=6f9c0f49233065ed1ce0bae8862902e3cead639e;hp=5eec3901a9398610a61234749e62851d7da06e44;hpb=435c55c675cad9355a4e82c4d4379267f0c9a9b0;p=plomrogue diff --git a/src/main.h b/src/main.h index 5eec390..792f294 100644 --- a/src/main.h +++ b/src/main.h @@ -10,6 +10,7 @@ #include /* for uint32_t*/ struct WinMeta; +struct WinConf; struct Win; struct KeyBinding; struct KeysWinData; @@ -34,6 +35,10 @@ struct World struct MonsterDef * monster_def; /* Pointer to the monster definitions. */ struct Monster * monster; /* Pointer to the monsters' data. */ struct Player * player; /* Pointer to the player data. */ + struct CommandDB * cmd_db; /* Pointer to the command database. */ + 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. */ };