refactor block chunk data location
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good

This commit is contained in:
austin 2024-11-23 22:27:52 -05:00
parent 874dcafa97
commit 344019885e
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package electrosphere.server.block.manager;
package electrosphere.client.block;
import java.util.Collection;
import java.util.Collections;
@ -9,7 +9,6 @@ import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.Semaphore;
import electrosphere.client.block.BlockChunkData;
import io.github.studiorailgun.HashUtils;
/**

View File

@ -3,6 +3,7 @@ package electrosphere.server.block.manager;
import java.util.concurrent.TimeUnit;
import java.util.function.Consumer;
import electrosphere.client.block.BlockChunkCache;
import electrosphere.client.block.BlockChunkData;
import electrosphere.engine.Globals;
import electrosphere.logger.LoggerInterface;

View File

@ -1,5 +1,6 @@
package electrosphere.server.block.manager;
import electrosphere.client.block.BlockChunkCache;
import electrosphere.client.block.BlockChunkData;
import electrosphere.engine.Globals;
import electrosphere.game.server.world.ServerWorldData;