Files
CT-Conway-s-Game-of-Life/src/gui/ControlWindow.java
T
2021-10-02 17:15:49 +02:00

16 lines
287 B
Java

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);
}
}