#90 Finished the example code

This commit is contained in:
Ilkka Seppala
2015-07-19 12:44:51 +03:00
parent 4ad5e84d0e
commit c4556561c4
10 changed files with 98 additions and 1 deletions
@@ -0,0 +1,9 @@
package com.iluwatar;
public class ArcherCommand implements Command {
@Override
public void process() {
new ArcherView().display();
}
}