diff options
Diffstat (limited to 'src/esieequest/controller/commands/SaveCommand.java')
-rw-r--r-- | src/esieequest/controller/commands/SaveCommand.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/esieequest/controller/commands/SaveCommand.java b/src/esieequest/controller/commands/SaveCommand.java index 44e83c0..641b329 100644 --- a/src/esieequest/controller/commands/SaveCommand.java +++ b/src/esieequest/controller/commands/SaveCommand.java | |||
@@ -1,17 +1,17 @@ | |||
1 | package esieequest.controller.commands; | 1 | package esieequest.controller.commands; |
2 | 2 | ||
3 | import esieequest.model.Game; | 3 | import esieequest.model.Game; |
4 | import esieequest.view.View; | 4 | import esieequest.view.Viewable; |
5 | 5 | ||
6 | /** | 6 | /** |
7 | * Saves the current Game. | 7 | * Saves the current Game. |
8 | * | 8 | * |
9 | * @author Pacien TRAN-GIRARD | 9 | * @author Pacien TRAN-GIRARD |
10 | */ | 10 | */ |
11 | public class SaveCommand implements CommandInterface { | 11 | public class SaveCommand implements Executable { |
12 | 12 | ||
13 | @Override | 13 | @Override |
14 | public void execute(final String argument, final Game game, final View view) { | 14 | public void execute(final String argument, final Game game, final Viewable view) { |
15 | // TODO Auto-generated method stub | 15 | // TODO Auto-generated method stub |
16 | 16 | ||
17 | } | 17 | } |