27 lines
660 B
Java
27 lines
660 B
Java
package de.mannheim.th.chess;
|
|
|
|
import de.mannheim.th.chess.ui.MainFrame;
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
/**
|
|
* Eine einfache Schach App mithilfe von {@linkplain https://github.com/bhlangonijr/chesslib} entwickelt.
|
|
* @author Matias Mas Viehl, Dominik Stuck und Marius Guendel
|
|
* @version 0.0.1
|
|
*/
|
|
public class App {
|
|
|
|
private static final Logger logger = LogManager.getLogger(App.class);
|
|
|
|
private static MainFrame userinterface;
|
|
/**
|
|
* Main-Methode.
|
|
* @param args
|
|
*/
|
|
public static void main(String[] args) {
|
|
logger.info("Hello World.");
|
|
userinterface = new MainFrame();
|
|
}
|
|
}
|