10 lines
143 B
Java
Raw Normal View History

2015-07-19 12:44:51 +03:00
package com.iluwatar;
public class ArcherCommand implements Command {
@Override
public void process() {
new ArcherView().display();
}
}