Shipyard.java
1 package hlt;
2
3 public class Shipyard extends Entity {
4 public Shipyard(final PlayerId owner, final Position position) {
5 super(owner, EntityId.NONE, position);
6 }
7
8 public Command spawn() {
9 return Command.spawnShip();
10 }
11 }