1 /************************************************************************************\
2  * CatLog - An SDSG Production                                                     *
3 \************************************************************************************/
4 
5 /*! \file		Program.cs
6  *  \author		Andrew Shurney
7  *  \brief		Logs Wii U output over a serial port
8  */
9 
10 using System;
11 using System.Collections.Generic;
12 using System.Linq;
13 using System.Windows.Forms;
14 
15 namespace CatLog
16 {
17     static class Program
18     {
19         /// <summary>
20         /// The main entry point for the application.
21         /// </summary>
22         [STAThread]
Main()23         static void Main()
24         {
25             Application.EnableVisualStyles();
26             Application.SetCompatibleTextRenderingDefault(false);
27             Application.Run(new CatLog());
28         }
29     }
30 }
31