generated from hummel/Bank-System
14 lines
221 B
Java
14 lines
221 B
Java
|
package tpe.exceptions.roboter.facade;
|
||
|
|
||
|
import tpe.exceptions.roboter.C3PO;
|
||
|
import tpe.exceptions.roboter.R2D2;
|
||
|
|
||
|
public class RobotFactory {
|
||
|
private R2D2 r2d2;
|
||
|
private C3PO c3po;
|
||
|
public int constructRobot() {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|