diff options
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/ch/asynk/rustanddust/game/Player.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/Player.java b/core/src/ch/asynk/rustanddust/game/Player.java index 3ed012b..1263ff4 100644 --- a/core/src/ch/asynk/rustanddust/game/Player.java +++ b/core/src/ch/asynk/rustanddust/game/Player.java @@ -40,6 +40,13 @@ public class Player this.engagementLost = 0; } + public void setTurn(int turn, int ap, int apSpent) + { + this.turn = turn; + this.ap = ap; + this.apSpent = apSpent; + } + public int getId() { return id; |