mirror of
https://github.com/Steffo99/unimore-oop-2020-cleaver.git
synced 2024-11-29 11:34:17 +00:00
14 lines
302 B
Java
14 lines
302 B
Java
|
package eu.steffo.cleaver;
|
||
|
|
||
|
import javax.swing.*;
|
||
|
import eu.steffo.cleaver.gui.CleaverFrame;
|
||
|
|
||
|
public class Main {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
CleaverFrame cf = new CleaverFrame();
|
||
|
cf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
cf.setVisible(true);
|
||
|
}
|
||
|
}
|