Initial commit
This commit is contained in:
24
SID Information/Program.cs
Normal file
24
SID Information/Program.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace SIDConvInfoEditorII
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// 해당 응용 프로그램의 주 진입점입니다.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main(params string[] args)
|
||||
{
|
||||
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
if (args != null && args.Length > 0) PUB.param = args[0];
|
||||
Application.Run(new fMain());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user