X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/12abb59b19f09c83647b1b4a6f509de5b0f6cc0e..901e26edd893a73ac38bdf95a7a72c48bdc1d07b:/Projects/LEDNotifier/LEDMixerApp/Program.cs diff --git a/Projects/LEDNotifier/LEDMixerApp/Program.cs b/Projects/LEDNotifier/LEDMixerApp/Program.cs new file mode 100644 index 000000000..d9171482b --- /dev/null +++ b/Projects/LEDNotifier/LEDMixerApp/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace LEDMixer +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new LEDMixer()); + } + } +}