diff options
Diffstat (limited to 'src/server/chunk_data.hh')
| -rw-r--r-- | src/server/chunk_data.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/chunk_data.hh b/src/server/chunk_data.hh index eea5cef..349d4dc 100644 --- a/src/server/chunk_data.hh +++ b/src/server/chunk_data.hh @@ -5,8 +5,8 @@ #include <optional> #include <unordered_set> -#include "server/world.hh" -#include "shared/player.hh" +#include "server/world/chunk.hh" +#include "shared/entity/player.hh" namespace server { @@ -15,7 +15,7 @@ public: // nullopt = constructing/destructing via future operations in thread pool // we use shared_ptr here to avoid complex moves in boost::asio::post. // There is no good reason to use shared_ptr over unique_ptr, other than - // boost::asio::post requiring copy_constructable args in std::bind. + // boost::asio::post requiring copy_constructable args in std::bind. std::optional<std::shared_ptr<server::world::chunk>> chunk; // players associated with the chunk std::unordered_set<shared::player::index_t> players; |
