first commit

This commit is contained in:
2020-06-12 23:49:11 +02:00
commit ea19e5ad2a
214 changed files with 43291 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import basis.Farbe;
import basis.Fenster;
import basis.Hilfe;
public class Output {
private Fenster frame;
public Output() {
frame = new Fenster(Hilfe.monitorBreite(), Hilfe.monitorHoehe());
frame.setzeHintergrundFarbe(Farbe.rgb(40, 40, 40));
}
public Fenster getFrame() {
return frame;
}
}