diff options
Diffstat (limited to 'game/server/world/unloader.hh')
| -rw-r--r-- | game/server/world/unloader.hh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/game/server/world/unloader.hh b/game/server/world/unloader.hh new file mode 100644 index 0000000..a995152 --- /dev/null +++ b/game/server/world/unloader.hh @@ -0,0 +1,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 |
