blob: 337b4965d6e30aba06c5a721bed3227fba42ffde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "world.h"
#include "../objlist.h"
WORLD* world_create( WORLD_MAP* map ) {
WORLD* w = obj_add<WORLD>( "root" );
w->map = map;
return w;
}
STAT world_populate_entities( WORLD *world ) {
return STAT_OK;
}
|