15 lines
182 B
Java
Raw Normal View History

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