17 lines
453 B
C
17 lines
453 B
C
|
|
||
|
#ifndef TC_WORLD_CONFIGURATION_H
|
||
|
#define TC_WORLD_CONFIGURATION_H
|
||
|
|
||
|
#include <world/world.h>
|
||
|
#include <world/chunk.h>
|
||
|
#include <utility/location.h>
|
||
|
#include <utility/promise.h>
|
||
|
|
||
|
void tc_activate_world (u32_t identifier);
|
||
|
void tc_deactivate_world (u32_t identifier);
|
||
|
|
||
|
void tc_update_world (u32_t identifier);
|
||
|
|
||
|
#endif TC_WORLD_CONFIGURATION_H
|
||
|
|