aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/engine/commands/TurnCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/esieequest/engine/commands/TurnCommand.java')
-rw-r--r--src/esieequest/engine/commands/TurnCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/esieequest/engine/commands/TurnCommand.java b/src/esieequest/engine/commands/TurnCommand.java
index c5edaef..0e8e22e 100644
--- a/src/esieequest/engine/commands/TurnCommand.java
+++ b/src/esieequest/engine/commands/TurnCommand.java
@@ -4,7 +4,7 @@ import esieequest.game.Game;
4import esieequest.game.Text; 4import esieequest.game.Text;
5import esieequest.game.map.Direction; 5import esieequest.game.map.Direction;
6import esieequest.game.map.Orientation; 6import esieequest.game.map.Orientation;
7import esieequest.ui.Viewable; 7import esieequest.ui.View;
8 8
9/** 9/**
10 * Allows the user to turn on himself, that is to say to point to another 10 * Allows the user to turn on himself, that is to say to point to another
@@ -15,7 +15,7 @@ import esieequest.ui.Viewable;
15public class TurnCommand implements Executable { 15public class TurnCommand implements Executable {
16 16
17 @Override 17 @Override
18 public void execute(final String argument, final Game game, final Viewable view) { 18 public void execute(final String argument, final Game game, final View view) {
19 19
20 final String direction = argument.toUpperCase(); 20 final String direction = argument.toUpperCase();
21 21