id; } /** * @return string|null */ public function getGameAssoc(): ?string { return $this->gameAssoc; } /** * @param string|null $gameAssoc */ public function setGameAssoc(?string $gameAssoc): void { $this->gameAssoc = $gameAssoc; } /** * @return Grid|null */ public function getGrid() { return $this->grid; } /** * @param Grid|null $grid */ public function setGrid( $grid): void { $this->grid = $grid; } /** * @return User|null */ public function getRed() { return $this->red; } /** * @param User|null $red */ public function setRed( $red): void { $this->red = $red; } /** * @return Gamer|null */ public function getRedAnon() { return $this->redAnon; } /** * @param Gamer|null $redAnon */ public function setRedAnon( $redAnon): void { $this->redAnon = $redAnon; } /** * @return User|null */ public function getBlue() { return $this->blue; } /** * @param User|null $blue */ public function setBlue( $blue): void { $this->blue = $blue; } /** * @return Gamer|null */ public function getBlueAnon() { return $this->blueAnon; } /** * @param Gamer|null $blueAnon */ public function setBlueAnon( $blueAnon): void { $this->blueAnon = $blueAnon; } /** * @return int|null */ public function getRedPoints(): ?int { return $this->redPoints; } /** * @param int|null $redPoints */ public function setRedPoints(?int $redPoints): void { $this->redPoints = $redPoints; } /** * @return int|null */ public function getBluePoints(): ?int { return $this->bluePoints; } /** * @param int|null $bluePoints */ public function setBluePoints(?int $bluePoints): void { $this->bluePoints = $bluePoints; } /** * @return bool|null */ public function getRedExplodedBomb(): ?bool { return $this->redExplodedBomb; } /** * @param bool|null $redExplodedBomb */ public function setRedExplodedBomb(?bool $redExplodedBomb): void { $this->redExplodedBomb = $redExplodedBomb; } /** * @return bool|null */ public function getBlueExplodedBomb(): ?bool { return $this->blueExplodedBomb; } /** * @param bool|null $blueExplodedBomb */ public function setBlueExplodedBomb(?bool $blueExplodedBomb): void { $this->blueExplodedBomb = $blueExplodedBomb; } /** * @return string|null */ public function getResign(): ?string { return $this->resign; } /** * @param string|null $resign */ public function setResign(?string $resign): void { $this->resign = $resign; } /** * @return \DateTime|null */ public function getCreated(): ?\DateTime { return $this->created; } /** * @param \DateTime|null $created */ public function setCreated(?\DateTime $created): void { $this->created = $created; } /** * @return \DateTime|null */ public function getUpdated(): ?\DateTime { return $this->updated; } /** * @param \DateTime|null $updated */ public function setUpdated(?\DateTime $updated): void { $this->updated = $updated; } /** * @return Step|null */ public function getStep() { return $this->step; } /** * @param Step|null $step */ public function setStep( $step): void { $this->step = $step; } }