mirror of
https://github.com/SourMesen/VisualNes.git
synced 2025-04-02 10:31:49 -04:00
-Added ability to load .nes roms and run them on the simulated chips -UI changes/refactoring
25 lines
461 B
C#
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");
|
|
}
|
|
}
|
|
}
|