WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
Program.cs
Go to the documentation of this file.
1 using System;
2 using System.Windows.Forms;
3 
7 namespace LedControlFileTester
8 {
9  static class Program
10  {
14  [STAThread]
15  static void Main(string[] args)
16  {
17  Application.EnableVisualStyles();
18  Application.SetCompatibleTextRenderingDefault(false);
19 
20  if (args.Length < 1)
21  {
22  Application.Run(new LedControlFileTestWizard());
23  }
24  else
25  {
26  Application.Run(new LedControlFileTestWizard(args[0]));
27 
28  }
29  }
30  }
31 }
Namespace for the LedControlFileTester application.