From 3bf42c6ff3805a0d42bbc661794a95ff31bedc26 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sat, 15 Mar 2025 16:22:09 +0500 Subject: Add whatever I was working on for the last month --- game/server/unloader.hh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 game/server/unloader.hh (limited to 'game/server/unloader.hh') diff --git a/game/server/unloader.hh b/game/server/unloader.hh new file mode 100644 index 0000000..d7a95da --- /dev/null +++ b/game/server/unloader.hh @@ -0,0 +1,14 @@ +#ifndef SERVER_UNLOADER_HH +#define SERVER_UNLOADER_HH 1 +#pragma once + +class Dimension; + +namespace unloader +{ +void init(void); +void init_late(void); +void fixed_update_late(Dimension *dimension); +} // namespace unloader + +#endif /* SERVER_UNLOADER_HH */ -- cgit