package fr.enssat.BoulderDash; import fr.enssat.BoulderDash.controllers.NavigationBetweenViewController; import javax.swing.*; /** * Game * * Spawns the game. * * @author Valerian Saliou * @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(); } }); } }