#pragma once #include "../object.h" struct WORLD : OBJECT { static const U32 CLASSID = OBJCLASS_WORLD; struct WORLD_MAP* map; }; extern WORLD* world_create( WORLD_MAP* map ); extern STAT world_populate_entities( WORLD* world );