Data
>
package me.scotth0828.main;
import me.scotth0828.main.Window.Window;
/**
* @author Scott
* @description Main class where application starts from
*/
public class Main {
public static void main(String[] args) { // main function, application starts from here
new Window(); // window class is called
}
}