id; } public function setId(int $id): static { $this->id = $id; return $this; } public function getX(): ?int { return $this->x; } public function setX(int $x): static { $this->x = $x; return $this; } public function getY(): ?int { return $this->y; } public function setY(int $y): static { $this->y = $y; return $this; } public function getW(): ?int { return $this->w; } public function setW(int $w): static { $this->w = $w; return $this; } public function getH(): ?int { return $this->h; } public function setH(int $h): static { $this->h = $h; return $this; } public function getRenderOrder(): ?string { return $this->render_order; } public function setRenderOrder(string $render_order): static { $this->render_order = $render_order; return $this; } public function getBuildingLayout(): ?BuildingLayout { return $this->buildingLayout; } public function setBuildingLayout(?BuildingLayout $buildingLayout): static { $this->buildingLayout = $buildingLayout; return $this; } public function getBuildingCase(): ?BuildingCase { return $this->buildingCase; } public function setBuildingCase(?BuildingCase $buildingCase): static { $this->buildingCase = $buildingCase; return $this; } }