blob: 229f2358be483b9fd485c7516f0f287324e79ba0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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 );
|