PocketMine-MP 5.21.2 git-a6534ecbbbcf369264567d27e5ed70f7f5be9816
Loading...
Searching...
No Matches
StructureEditorData.php
1<?php
2
3/*
4 * This file is part of BedrockProtocol.
5 * Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/BedrockProtocol>
6 *
7 * BedrockProtocol is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13declare(strict_types=1);
14
15namespace pocketmine\network\mcpe\protocol\types;
16
18 public const TYPE_DATA = 0;
19 public const TYPE_SAVE = 1;
20 public const TYPE_LOAD = 2;
21 public const TYPE_CORNER = 3;
22 public const TYPE_INVALID = 4;
23 public const TYPE_EXPORT = 5;
24
25 public string $structureName;
26 public string $structureDataField;
27 public bool $includePlayers;
28 public bool $showBoundingBox;
29 public int $structureBlockType;
30 public StructureSettings $structureSettings;
31 public int $structureRedstoneSaveMode;
32}