15 lines
204 B
Java
Raw Normal View History

package com.iluwatar.front.controller;
2015-07-19 12:44:51 +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();
}
2015-07-19 12:44:51 +03:00
}