11 lines
198 B
11 lines
198 B
8 years ago
|
package sig.modules.Controller;
|
||
|
|
||
|
import javax.swing.JFrame;
|
||
|
|
||
|
public class ControlConfigurationWindow extends JFrame{
|
||
|
|
||
|
public ControlConfigurationWindow() {
|
||
|
this.setVisible(true);
|
||
|
}
|
||
|
}
|