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