package controller; import javax.swing.UIManager; import java.awt.*; import view.*; /** * The main entry point to the GUI application. */ public class HangmanApp { public static void main(String[] args) { new HangmanController().constructGame(); } }