mirror of
https://github.com/WB3000/nusdownloader.git
synced 2024-11-17 07:09:21 +01:00
ee2ab61729
- Added the ability to download key.bin from HackMii - Added a quickly made splash screen. - Updated sln to Visual Studio 2010 Express.
20 lines
366 B
C#
20 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace NUS_Downloader
|
|
{
|
|
public partial class Splash : Form
|
|
{
|
|
public Splash()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|