azaraka/src/cl/cromer/game/Main.java
Chris Cromer 0e61872461 Add main game files
Signed-off-by: Chris Cromer <chris@cromer.cl>
2019-09-02 14:52:01 -04:00

19 lines
415 B
Java

package cl.cromer.game;
import javax.swing.JFrame;
/**
* The main class of the game
*/
public class Main {
/**
* Open the main window
* @param args The arguments passed to the application
*/
public static void main (String[]args) {
VentanaPrincipal ventanaPrincipal = new VentanaPrincipal();
ventanaPrincipal.setVisible(true);
ventanaPrincipal.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}