1
0
mirror of https://github.com/pmmp/PocketMine-MP.git synced 2025-06-24 04:14:07 +00:00
2020-06-15 23:07:05 +01:00

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){}
}