From 4a3364aaa8eebd3de444b6c5286093429763c548 Mon Sep 17 00:00:00 2001 From: openlegends Date: Mon, 18 Mar 2024 20:51:36 +0200 Subject: [PATCH] draft arena game --- src/Test/Game/Arena.php | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/Test/Game/Arena.php diff --git a/src/Test/Game/Arena.php b/src/Test/Game/Arena.php new file mode 100644 index 0000000..caff6ac --- /dev/null +++ b/src/Test/Game/Arena.php @@ -0,0 +1,43 @@ +setPlayer( + $player + ); + + $this->setDeck( + $deck + ); + + $this->setHand( + $hand + ); + + $this->setPile( + $pile + ); + + $this->setLeft( + $left + ); + + $this->setRight( + $right + ); + } +} \ No newline at end of file