21 public function __construct(
22 private int $topBlock,
23 private int $midBlock,
24 private int $seaFloorBlock,
25 private int $foundationBlock,
26 private int $seaBlock,
27 private int $seaFloorDepth
30 public function getTopBlock() :
int{
return $this->topBlock; }
32 public function getMidBlock() :
int{
return $this->midBlock; }
34 public function getSeaFloorBlock() :
int{
return $this->seaFloorBlock; }
36 public function getFoundationBlock() :
int{
return $this->foundationBlock; }
38 public function getSeaBlock() :
int{
return $this->seaBlock; }
40 public function getSeaFloorDepth() :
int{
return $this->seaFloorDepth; }
45 $seaFloorBlock = $in->
getLInt();
46 $foundationBlock = $in->
getLInt();
48 $seaFloorDepth = $in->
getLInt();
61 $out->putLInt($this->topBlock);
62 $out->putLInt($this->midBlock);
63 $out->putLInt($this->seaFloorBlock);
64 $out->putLInt($this->foundationBlock);
65 $out->putLInt($this->seaBlock);
66 $out->putLInt($this->seaFloorDepth);