X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fmain.h;h=ee9fc9055c6377cd860607bb68b1004ff88b3a1f;hb=d4693165cda2814c544e05b219c2cf3798e31857;hp=5eec3901a9398610a61234749e62851d7da06e44;hpb=435c55c675cad9355a4e82c4d4379267f0c9a9b0;p=plomrogue diff --git a/src/main.h b/src/main.h index 5eec390..ee9fc90 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,9 @@ 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. */ };