diff options
Diffstat (limited to 'backend')
-rw-r--r-- | backend/src/main/java/org/luxons/sevenwonders/game/api/PlayerTurnInfo.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/backend/src/main/java/org/luxons/sevenwonders/game/api/PlayerTurnInfo.java b/backend/src/main/java/org/luxons/sevenwonders/game/api/PlayerTurnInfo.java index 1ff6f541..14d4a9e8 100644 --- a/backend/src/main/java/org/luxons/sevenwonders/game/api/PlayerTurnInfo.java +++ b/backend/src/main/java/org/luxons/sevenwonders/game/api/PlayerTurnInfo.java @@ -3,7 +3,6 @@ package org.luxons.sevenwonders.game.api; import java.util.List; import org.luxons.sevenwonders.game.Player; -import org.luxons.sevenwonders.game.cards.HandRotationDirection; public class PlayerTurnInfo { @@ -13,8 +12,6 @@ public class PlayerTurnInfo { private int currentAge; - private HandRotationDirection handRotationDirection; - private Action action; private List<HandCard> hand; @@ -42,14 +39,6 @@ public class PlayerTurnInfo { this.currentAge = currentAge; } - public HandRotationDirection getHandRotationDirection() { - return handRotationDirection; - } - - public void setHandRotationDirection(HandRotationDirection handRotationDirection) { - this.handRotationDirection = handRotationDirection; - } - public List<HandCard> getHand() { return hand; } |