diff --git a/src/Entity/GameRow.php b/src/Entity/GameRow.php new file mode 100644 index 0000000..a1643f3 --- /dev/null +++ b/src/Entity/GameRow.php @@ -0,0 +1,84 @@ +id; + } + + public function getGame(): ?Game + { + return $this->game; + } + + public function setGame(Game $game): static + { + $this->game = $game; + + return $this; + } + + public function getActor(): ?Actor + { + return $this->actor; + } + + public function setActor(Actor $actor): static + { + $this->actor = $actor; + + return $this; + } + + public function getPosition(): int + { + return $this->position; + } + + public function setPosition(int $position): static + { + $this->position = $position; + + return $this; + } + + public function getRowOrder(): int + { + return $this->rowOrder; + } + + public function setRowOrder(int $rowOrder): static + { + $this->rowOrder = $rowOrder; + + return $this; + } +}