aboutsummaryrefslogtreecommitdiff
path: root/src/esieequest/controller/commands/SaveCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/esieequest/controller/commands/SaveCommand.java')
-rw-r--r--src/esieequest/controller/commands/SaveCommand.java19
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 @@
1package esieequest.controller.commands;
2
3import esieequest.model.Game;
4import esieequest.view.View;
5
6/**
7 * Saves the current Game.
8 *
9 * @author Pacien TRAN-GIRARD
10 */
11public 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}