source: other-projects/fft-ddr/summer-2014/trunk/FFDDR/Program.cs@ 29735

Last change on this file since 29735 was 29735, checked in by cct9, 9 years ago

Initial set of files for the FFT-Dance-Dance-Revolution project

  • Property svn:executable set to *
File size: 528 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Threading.Tasks;
5using System.Windows.Forms;
6
7namespace FFDDR
8{
9 static class Program
10 {
11 /// <summary>
12 /// The main entry point for the application.
13 /// </summary>
14 [STAThread]
15 static void Main()
16 {
17 Application.EnableVisualStyles();
18 Application.SetCompatibleTextRenderingDefault(false);
19 Application.Run(new FFDDR());
20 }
21 }
22}
Note: See TracBrowser for help on using the repository browser.