aboutsummaryrefslogtreecommitdiff
path: root/src/client/state/chunks.hh
blob: e0d4d820d166e4e5bcb889c45258133dc9faa9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CLIENT_STATE_CHUNKS_HH_
#define CLIENT_STATE_CHUNKS_HH_

#include <memory>
#include <unordered_map>

#include "client/world/chunk.hh"

namespace client {
namespace state {

inline client::world::chunks_t chunks{4096, shared::world::chunk::hash,
                                      shared::world::chunk::equal};

} // namespace state
} // namespace client

#endif