summaryrefslogtreecommitdiff
path: root/src/main/ICommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/ICommand.java')
-rw-r--r--src/main/ICommand.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/main/ICommand.java b/src/main/ICommand.java
deleted file mode 100644
index 14419a2..0000000
--- a/src/main/ICommand.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package main;
-
-/**
- * The standard interface for any command
- *
- * @author Maurice Laveaux
- */
-public interface ICommand {
-
- /**
- * Execute all the steps to complete this Command.
- */
- public void execute();
-}