This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/src/jrummikub/JRummikub.java
Matthias Schiffer df79c78dec Add application control, use game settings from settings panel
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@284 72836036-5685-4462-b002-a69064685172
2011-05-26 16:12:44 +02:00

34 lines
584 B
Java

package jrummikub;
import javax.swing.UIManager;
import jrummikub.control.ApplicationControl;
import jrummikub.view.impl.View;
/**
* The main class
*/
public class JRummikub {
/**
* The main method
*
* @param args
* command line arguments
*/
public static void main(String[] args) {
String nativeLF = UIManager.getSystemLookAndFeelClassName();
try {
UIManager.setLookAndFeel(nativeLF);
} catch (Exception e) {
}
View view = new View();
ApplicationControl appControl = new ApplicationControl(view);
appControl.startApplication();
}
}