blob: a99515209e3618f4cecb3e2d68e8d14871855095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef SERVER_UNLOADER_HH
#define SERVER_UNLOADER_HH 1
#pragma once
namespace world
{
class Dimension;
} // namespace world
namespace world::unloader
{
void init(void);
void init_late(void);
void fixed_update_late(Dimension* dimension);
} // namespace world::unloader
#endif // SERVER_UNLOADER_HH
|