mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 20:28:31 +00:00
27 lines
438 B
Plaintext
27 lines
438 B
Plaintext
<?php
|
|
|
|
namespace pocketmine\level\format\io;
|
|
|
|
class ChunkUtils{
|
|
/**
|
|
* @param string $byte_array
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function reorderByteArray($byte_array){}
|
|
|
|
/**
|
|
* @param string $nibble_array
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function reorderNibbleArray($nibble_array){}
|
|
|
|
/**
|
|
* @param list<int> $color_array
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function convertBiomeColors($color_array){}
|
|
}
|