Moving more stuff around

This commit is contained in:
Dylan K. Taylor 2022-06-08 15:57:02 +01:00
parent 680615eed8
commit 4aa1a3da8b
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
5 changed files with 6 additions and 5 deletions

View File

@ -21,8 +21,9 @@
declare(strict_types=1);
namespace pocketmine\data\bedrock;
namespace pocketmine\data\bedrock\block\upgrade;
use pocketmine\data\bedrock\LegacyToStringBidirectionalIdMap;
use pocketmine\utils\SingletonTrait;
use Webmozart\PathUtil\Path;

View File

@ -24,7 +24,7 @@ declare(strict_types=1);
namespace pocketmine\data\bedrock\block\upgrade;
use pocketmine\data\bedrock\block\BlockStateData;
use pocketmine\data\bedrock\LegacyBlockIdToStringIdMap;
use pocketmine\data\bedrock\block\upgrade\LegacyBlockIdToStringIdMap;
use pocketmine\network\mcpe\protocol\serializer\NetworkNbtSerializer;
use pocketmine\utils\BinaryStream;

View File

@ -21,7 +21,7 @@
declare(strict_types=1);
namespace pocketmine\data\bedrock;
namespace pocketmine\data\bedrock\item;
use pocketmine\utils\AssumptionFailedError;
use pocketmine\utils\SingletonTrait;

View File

@ -27,7 +27,7 @@ use pocketmine\block\Block;
use pocketmine\block\utils\DyeColor;
use pocketmine\block\utils\SkullType;
use pocketmine\block\VanillaBlocks as Blocks;
use pocketmine\data\bedrock\BlockItemIdMap;
use pocketmine\data\bedrock\item\BlockItemIdMap;
use pocketmine\data\bedrock\block\BlockStateSerializeException;
use pocketmine\data\bedrock\CompoundTypeIds;
use pocketmine\data\bedrock\DyeColorIdMap;

View File

@ -35,7 +35,7 @@ use pocketmine\data\bedrock\block\upgrade\BlockStateUpgrader;
use pocketmine\data\bedrock\block\upgrade\BlockStateUpgradeSchemaUtils;
use pocketmine\data\bedrock\block\upgrade\LegacyBlockStateMapper;
use pocketmine\data\bedrock\block\UpgradingBlockStateDeserializer;
use pocketmine\data\bedrock\LegacyBlockIdToStringIdMap;
use pocketmine\data\bedrock\block\upgrade\LegacyBlockIdToStringIdMap;
use pocketmine\errorhandler\ErrorToExceptionHandler;
use pocketmine\nbt\tag\CompoundTag;
use Webmozart\PathUtil\Path;