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