summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/game/ctrl
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-03-07 19:55:51 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-03-07 19:55:51 +0100
commit9ae4744a90f032a6bdc92b9c0389f0bc696e9e7f (patch)
treefb8e98380da694f1204f4ae41d360ef7c1f01085 /core/src/ch/asynk/rustanddust/game/ctrl
parent6713a1ee20ed72e74117d1cee95ab2b48cb6c6e4 (diff)
downloadRustAndDust-9ae4744a90f032a6bdc92b9c0389f0bc696e9e7f.zip
RustAndDust-9ae4744a90f032a6bdc92b9c0389f0bc696e9e7f.tar.gz
Ctrl: only RustAndDust param for constructor
Diffstat (limited to 'core/src/ch/asynk/rustanddust/game/ctrl')
-rw-r--r--core/src/ch/asynk/rustanddust/game/ctrl/Solo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/ctrl/Solo.java b/core/src/ch/asynk/rustanddust/game/ctrl/Solo.java
index 58c1a4b..f7d5540 100644
--- a/core/src/ch/asynk/rustanddust/game/ctrl/Solo.java
+++ b/core/src/ch/asynk/rustanddust/game/ctrl/Solo.java
@@ -8,9 +8,9 @@ public class Solo extends Ctrl
{
private int gameId;
- public Solo(final RustAndDust game, final Battle battle)
+ public Solo(final RustAndDust game)
{
- super(game, battle);
+ super(game);
}
@Override