using System; namespace Galactic_Colors_Control_GUI { /// /// The main class. /// public static class Program { /// /// The main entry point for the application. /// [STAThread] private static void Main() { //TODO add debug and more using (var game = new Game()) game.Run(); } } }