30 lines
593 B
Java
30 lines
593 B
Java
package fr.enssat.BoulderDash;
|
|
|
|
import fr.enssat.BoulderDash.controllers.NavigationBetweenViewController;
|
|
|
|
import javax.swing.*;
|
|
|
|
|
|
/**
|
|
* Game
|
|
*
|
|
* Spawns the game.
|
|
*
|
|
* @author Valerian Saliou <valerian@valeriansaliou.name>
|
|
* @since 2015-06-19
|
|
*/
|
|
public class Game {
|
|
/**
|
|
* Class constructor
|
|
*
|
|
* @param args Command-line arguments
|
|
*/
|
|
public static void main(String[] args) {
|
|
SwingUtilities.invokeLater(new Runnable() {
|
|
public void run() {
|
|
new NavigationBetweenViewController();
|
|
}
|
|
});
|
|
}
|
|
}
|