2012-11-05 03:32:18 +00:00
|
|
|
|
using System.Windows.Forms;
|
2011-12-02 06:32:20 +00:00
|
|
|
|
|
2012-11-05 03:32:18 +00:00
|
|
|
|
namespace NBTExplorer.Windows
|
2011-12-02 06:32:20 +00:00
|
|
|
|
{
|
|
|
|
|
public partial class About : Form
|
|
|
|
|
{
|
|
|
|
|
public About ()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2012-08-24 03:58:11 +00:00
|
|
|
|
|
|
|
|
|
private void linkLabel1_LinkClicked (object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
2013-11-01 04:48:44 +00:00
|
|
|
|
System.Diagnostics.Process.Start("https://github.com/jaquadro/NBTExplorer");
|
2012-08-24 03:58:11 +00:00
|
|
|
|
}
|
2011-12-02 06:32:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|