X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=src%2Fserver%2Fworld.h;h=c17fd60be34a652e4c2470b5c789e28e42048a9c;hb=e03020342a74aef143b1ec38c18966dac64181b5;hp=56a5f282fa8592218846b3540616e3be190f8e67;hpb=dd9d65ee727ac7e95801da0f8b5bae7009811802;p=plomrogue diff --git a/src/server/world.h b/src/server/world.h index 56a5f28..c17fd60 100644 --- a/src/server/world.h +++ b/src/server/world.h @@ -7,7 +7,7 @@ #define MAIN_H #include /* uint8_t, uint16_t, uint32_t */ -#include "../common/map.h" /* struct Map */ +#include "map.h" /* struct Map */ struct MapObjDef; struct MapObjAct; struct MapObj; @@ -24,6 +24,8 @@ struct World char * path_in; /* Fifo to receive command messages. */ char * path_out; /* File to write the game state as visible to clients.*/ char * path_record; /* Record file from which to read the game history. */ + char * path_map_obj_defs; /* path for map object definitions config file */ + char * path_map_obj_acts; /* path for map object actions config file */ char * tmp_suffix; /* Appended to paths of files for their tmp versions. */ char * queue; /* Stores un-processed messages received via input fifo. */ uint32_t queue_size;/* Length of .queue sequence of \0-terminated strings.*/