mirror of
https://github.com/WiiDatabase/nusdownloader.git
synced 2025-02-17 10:46:27 +01:00
![gb.luke](/assets/img/avatar_default.png)
Unchecking all IOS patches now also unchecks main IOS patch checkbox Increased size of header, in hope that the date won't be cut off... Changed TODO list stuff VERIFIED UNDER: Windows TO VERIFY: Linux (not sure if outputting WADs correctly, should be checked) Mac OS X (not such a priority, as mono can be quite hard to set up on OS X)
31 lines
846 B
C#
31 lines
846 B
C#
///////////////////////////////////////////
|
|
// NUS Downloader: Program.cs //
|
|
// $Rev:: $ //
|
|
// $Author:: $ //
|
|
// $Date:: $ //
|
|
///////////////////////////////////////////
|
|
|
|
|
|
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());
|
|
}
|
|
}
|
|
}
|