mirror of
https://github.com/WB3000/nusdownloader.git
synced 2024-11-16 14:59:14 +01:00
23 lines
572 B
C#
23 lines
572 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace NUS_Downloader
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
if (args.Length != 0)
|
|
Application.Run(new Form1(args));
|
|
else
|
|
Application.Run(new Form1());
|
|
}
|
|
}
|
|
}
|