LOG121_TP01/src/model/Factory.java
2022-05-26 16:04:07 -04:00

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