19 lines
507 B
Java
19 lines
507 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.world.level.chunk;
|
|
|
|
import java.util.function.BiConsumer;
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.world.level.BlockGetter;
|
|
import net.minecraft.world.level.block.state.BlockState;
|
|
import net.minecraft.world.level.lighting.ChunkSkyLightSources;
|
|
|
|
public interface LightChunk
|
|
extends BlockGetter {
|
|
public void findBlockLightSources(BiConsumer<BlockPos, BlockState> var1);
|
|
|
|
public ChunkSkyLightSources getSkyLightSources();
|
|
}
|
|
|