diff options
| author | untodesu <kirill@untode.su> | 2025-09-11 13:51:50 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-09-11 13:51:50 +0500 |
| commit | f0cc06c7388acb32b86301965c5b2547e4e3b919 (patch) | |
| tree | d6fc939b1b660562a8abdedb3330ae66defc1bcb /game/server | |
| parent | aaed751bf4430bf4b9b30cef532b8753b9f639ce (diff) | |
| download | voxelius-f0cc06c7388acb32b86301965c5b2547e4e3b919.tar.bz2 voxelius-f0cc06c7388acb32b86301965c5b2547e4e3b919.zip | |
Displace threading into core (qfortress graft)
Diffstat (limited to 'game/server')
| -rw-r--r-- | game/server/main.cc | 2 | ||||
| -rw-r--r-- | game/server/world/worldgen.cc | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/game/server/main.cc b/game/server/main.cc index deb0f97..872307b 100644 --- a/game/server/main.cc +++ b/game/server/main.cc @@ -9,11 +9,11 @@ #include "core/resource/resource.hh" #include "core/utils/epoch.hh" +#include "core/threading.hh" #include "core/version.hh" #include "shared/game.hh" #include "shared/protocol.hh" -#include "shared/threading.hh" #include "server/game.hh" #include "server/globals.hh" diff --git a/game/server/world/worldgen.cc b/game/server/world/worldgen.cc index 99e9a78..8b02b52 100644 --- a/game/server/world/worldgen.cc +++ b/game/server/world/worldgen.cc @@ -4,11 +4,12 @@ #include "core/io/cmdline.hh" +#include "core/threading.hh" + #include "shared/world/chunk.hh" #include "shared/world/dimension.hh" #include "shared/protocol.hh" -#include "shared/threading.hh" #include "server/world/inhabited.hh" |
