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() { } }