VisualNes/GUI/frmAbout.cs
Souryo b3f55fe42a -Added 2A03 chip inside simulation
-Added ability to load .nes roms and run them on the simulated chips
-UI changes/refactoring
2017-01-06 21:23:50 -05:00

25 lines
461 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GUI
{
partial class frmAbout : Form
{
public frmAbout()
{
InitializeComponent();
}
private void lblLink_Click(object sender, EventArgs e)
{
Process.Start("http://www.mesen.ca/VisualNes.php");
}
}
}