| 21 | namespace Chunk |
| 22 | { |
| 23 | Full_Chunk::Full_Chunk( World& world, |
| 24 | Map& map, |
| 25 | const Position& position, |
| 26 | const World_Settings& settings, |
| 27 | World_File& worldFile) |
| 28 | : m_position {position} |
| 29 | , m_pWorld {&world} |
| 30 | , m_pChunkMap {&map} |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | |
| 35 | void Full_Chunk::tick() |
nothing calls this directly
no outgoing calls
no test coverage detected