mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-05 01:16:15 +00:00
Clean up entity/tile data loading from world providers
This commit is contained in:
@ -23,11 +23,9 @@ declare(strict_types=1);
|
||||
|
||||
namespace pocketmine\world\format\io;
|
||||
|
||||
use pocketmine\world\format\Chunk;
|
||||
|
||||
interface WritableWorldProvider extends WorldProvider{
|
||||
/**
|
||||
* Saves a chunk (usually to disk).
|
||||
*/
|
||||
public function saveChunk(int $chunkX, int $chunkZ, Chunk $chunk) : void;
|
||||
public function saveChunk(int $chunkX, int $chunkZ, ChunkData $chunkData) : void;
|
||||
}
|
||||
|
Reference in New Issue
Block a user