2008-07-23 22:00:09 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2008-07-23 22:41:56 +00:00
|
|
|
namespace PrimWorkshop
|
2008-07-23 22:00:09 +00:00
|
|
|
{
|
|
|
|
|
static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2008-07-23 22:41:56 +00:00
|
|
|
Application.Run(new frmPrimWorkshop());
|
2008-07-23 22:00:09 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|