summary refs log tree commit diff
path: root/src/World/Generation/Lighting.hpp
blob: 7bb8fcc2f1e9f3d9140b0d402e0f877c0bdd9b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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);

}