15 lines
263 B
Java
15 lines
263 B
Java
package model;
|
|
|
|
public class Factory extends Building {
|
|
public Factory(int id, String type, int x, int y) {
|
|
super(id, type, x, y);
|
|
}
|
|
|
|
@Override
|
|
public void processInput(Component input) {
|
|
}
|
|
|
|
private void buildComponent() {
|
|
}
|
|
}
|