#include "world.h" #include "../objlist.h" WORLD* world_create( WORLD_MAP* map ) { WORLD* w = obj_add( "root" ); w->map = map; return w; } STAT world_populate_entities( WORLD *world ) { return STAT_OK; }