home · contact · privacy
Merged world.wmeta and world.winconf_db into world.wins.
[plomrogue] / src / client / world.h
index 80fae714974463649060b0672f48ddb68630303c..fb8ae4d7530b6a4ee02c93958c0ed05210ed393f 100644 (file)
 #include "../common/yx_uint16.h" /* struct yx_uint16 */
 #include "keybindings.h" /* stuct KeyBindingDB */
 #include "command_db.h" /* struct CommandDB */
-#include "windows.h" /* struct WinMeta */
 #include "wincontrol.h" /* WinConfDB */
 
 
 
 struct World
 {
-    struct WinMeta wmeta;
-    struct WinConfDB winconf_db;
+    struct WinConfDB wins;
     struct CommandDB cmd_db;        /* Command database. */
     struct KeyBindingDB kb_global;    /* Global keybindings. */
     struct KeyBindingDB kb_wingeom;   /* Window geometry config keybindings. */
@@ -30,6 +28,7 @@ struct World
     struct yx_uint16 player_pos;
     char * log;
     char * path_server_in;
+    char * path_interface_conf;
     char * player_inventory;
     uint16_t turn;
     uint16_t score;