forked from mirrors/NBTExplorer
17 lines
398 B
C#
17 lines
398 B
C#
using System.Windows.Forms;
|
|
|
|
namespace NBTExplorer.Windows
|
|
{
|
|
public partial class About : Form
|
|
{
|
|
public About ()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void linkLabel1_LinkClicked (object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("https://github.com/jaquadro/NBTExplorer");
|
|
}
|
|
}
|
|
}
|