first commit
This commit is contained in:
16
FindTheHole/src/Output.java
Normal file
16
FindTheHole/src/Output.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user