mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-10 13:10:25 +00:00
22 lines
441 B
C#
22 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SCJMapper_V2
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main( )
|
|
{
|
|
Application.EnableVisualStyles( );
|
|
Application.SetCompatibleTextRenderingDefault( false );
|
|
Application.Run( new MainForm( ) );
|
|
}
|
|
}
|
|
}
|