diff options
| author | Franklin Wei <git@fwei.tk> | 2016-01-24 21:55:16 -0500 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2016-01-24 21:55:16 -0500 |
| commit | 7ba1da83c715175fb76c17098793091e6e8db788 (patch) | |
| tree | 5766f3524929288e18758f3647a52de537191aae /export/include | |
| parent | 6e3d6b3186bc07003d17ad7c54bb013c9b5d6dcf (diff) | |
| download | netcosm-7ba1da83c715175fb76c17098793091e6e8db788.zip netcosm-7ba1da83c715175fb76c17098793091e6e8db788.tar.gz netcosm-7ba1da83c715175fb76c17098793091e6e8db788.tar.bz2 netcosm-7ba1da83c715175fb76c17098793091e6e8db788.tar.xz | |
some more work on objects, still can't serialize
Diffstat (limited to 'export/include')
| -rw-r--r-- | export/include/world_api.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/export/include/world_api.h b/export/include/world_api.h index 62cc74a..5a964cc 100644 --- a/export/include/world_api.h +++ b/export/include/world_api.h @@ -19,3 +19,12 @@ #include "globals.h" #include "room.h" +#include "server.h" + +extern const struct obj_class_t netcosm_obj_classes[]; +extern const size_t netcosm_obj_classes_sz; + +extern const struct roomdata_t netcosm_world[]; +extern const size_t netcosm_world_sz; + +extern const char *netcosm_world_name; |