diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2017-01-22 17:25:54 +0100 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2017-01-22 17:26:35 +0100 |
commit | fc4be773629ec0961f78292d589237fd1d5d8ba8 (patch) | |
tree | 8810dee826441071b4acd225a9e3003724f70b0e /backend/src/main | |
parent | Fix player indexes in TestUtils (diff) | |
download | seven-wonders-fc4be773629ec0961f78292d589237fd1d5d8ba8.tar.gz seven-wonders-fc4be773629ec0961f78292d589237fd1d5d8ba8.tar.bz2 seven-wonders-fc4be773629ec0961f78292d589237fd1d5d8ba8.zip |
Remove handRotationDirection in PlayerTurnInfo
It is already provided in the nested Table object.
Diffstat (limited to 'backend/src/main')
-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; } |