Special GUI for CUERipper

This commit is contained in:
chudov
2008-12-08 05:09:35 +00:00
parent edf060e416
commit f6ae2c4435
11 changed files with 1496 additions and 0 deletions

20
CUERipper/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace CUERipper
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmCUERipper());
}
}
}