aboutsummaryrefslogtreecommitdiff
path: root/export/include
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2016-01-31 19:53:45 -0500
committerFranklin Wei <frankhwei536@gmail.com>2016-01-31 19:53:45 -0500
commit0730fc3924dd4e04efbe51287d1d69850404d05f (patch)
tree495d79d0dc26e39c9065c6ceb7d16b9a3e76561d /export/include
parent8405274a91e3652ee98a423608a8496ead1edc05 (diff)
downloadnetcosm-0.5.0-rc1.zip
netcosm-0.5.0-rc1.tar.gz
netcosm-0.5.0-rc1.tar.bz2
netcosm-0.5.0-rc1.tar.xz
bump version to 0.5.0-rc10.5.0-rc1
* implements objects using reference counts rather than copying * implements both room-local and global verbs * refactors the world_* functions into a separate module * numerous other changes
Diffstat (limited to 'export/include')
-rw-r--r--export/include/world_api.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/export/include/world_api.h b/export/include/world_api.h
index 5a964cc..f0d0398 100644
--- a/export/include/world_api.h
+++ b/export/include/world_api.h
@@ -16,15 +16,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#pragma once
+
#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;
+#include "world.h"