OOP2

Main.java

1
/**
2
 * Main class - Calls the MainWindow and fills it with the necessary parts.
3
 * @author Maarten Vangeneugden - 1438256
4
 */
5
public class Main {
6
7
	public static void main(String[] args) {
8
		MainWindow mainWindow = new MainWindow();
9
	}
10
}
11