minecraft-source/src/net/minecraft/world/level/chunk/LightChunkGetter.java

17 lines
455 B
Java
Raw Normal View History

2020-07-22 06:23:34 +01:00
package net.minecraft.world.level.chunk;
import net.minecraft.core.SectionPos;
import net.minecraft.world.level.LightLayer;
import javax.annotation.Nullable;
import net.minecraft.world.level.BlockGetter;
public interface LightChunkGetter {
@Nullable
BlockGetter getChunkForLighting(final int integer1, final int integer2);
2020-07-22 06:25:47 +01:00
default void onLightUpdate(final LightLayer bkc, final SectionPos gd) {
2020-07-22 06:23:34 +01:00
}
BlockGetter getLevel();
}