New Projekt Stukture

This commit is contained in:
Noah
2021-10-02 17:15:49 +02:00
parent d2ab1ba1d7
commit 0c09667677
8 changed files with 465 additions and 454 deletions
+15
View File
@@ -0,0 +1,15 @@
package gui;
import javax.swing.*;
public class ControlWindow {
private JFrame controlWindow;
public ControlWindow(){
controlWindow = new JFrame();
controlWindow.setVisible(true);
controlWindow.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
}
}