23 lines
586 B
Java
23 lines
586 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* org.jspecify.annotations.Nullable
|
|
*/
|
|
package net.minecraft.server.level.progress;
|
|
|
|
import net.minecraft.resources.ResourceKey;
|
|
import net.minecraft.world.level.ChunkPos;
|
|
import net.minecraft.world.level.Level;
|
|
import net.minecraft.world.level.chunk.status.ChunkStatus;
|
|
import org.jspecify.annotations.Nullable;
|
|
|
|
public interface ChunkLoadStatusView {
|
|
public void moveTo(ResourceKey<Level> var1, ChunkPos var2);
|
|
|
|
public @Nullable ChunkStatus get(int var1, int var2);
|
|
|
|
public int radius();
|
|
}
|
|
|