#pragma once #include "../Chunk.hpp" #include "ChunkNeighbors.hpp" namespace MC::World::Generation::Lighting { constexpr U8 LightSun = 200; constexpr U8 LightTorch = 100; void light_chunk(Chunk& chunk, ChunkNeighbors& neighbors); }