package GUI; /** * Launching point of the GUI. * * Attribution for dragging pieces with mouse: http://stackoverflow.com/questions/6811247/drawing-in-jlayeredpane-over-exising-jpanels */ public class Main { /** * Launching point of the GUI. */ public static void main(String[] args) { new Controller(); } }