15 lines
204 B
Java
15 lines
204 B
Java
package com.iluwatar.front.controller;
|
|
|
|
/**
|
|
*
|
|
* Command for archers.
|
|
*
|
|
*/
|
|
public class ArcherCommand implements Command {
|
|
|
|
@Override
|
|
public void process() {
|
|
new ArcherView().display();
|
|
}
|
|
}
|