generated from hummel/Bank-System
15 lines
224 B
Java
15 lines
224 B
Java
|
import tpe.facade.FactorySystem;
|
||
|
import tpe.ui.UI;
|
||
|
|
||
|
public class Main {
|
||
|
|
||
|
public static void main(String[] args) throws Exception {
|
||
|
|
||
|
FactorySystem fs = new FactorySystem("Roboterfabrik");
|
||
|
UI ui = new UI(fs);
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|