Archived
0

исключена ссылка на World из класса Chunk

This commit is contained in:
2018-08-26 00:51:55 +03:00
parent 06835aa5a2
commit 2147c18f81
3 changed files with 4 additions and 32 deletions

View File

@@ -1,7 +1,6 @@
package mc.core.world.chunk;
import mc.core.world.Biome;
import mc.core.world.World;
public interface Chunk {
int getX();
@@ -12,7 +11,4 @@ public interface Chunk {
Biome getBiome(int localX, int localZ);
void setBiome(int localX, int localZ, Biome biome);
World getWorld();
void setWorld(World world);
}