BizHawk/BizHawk.PCE_Debugger/Mainform.cs

30 lines
516 B
C#
Raw Normal View History

2013-07-30 20:18:11 +00:00
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 BizHawk.Client.PCE_Debugger
2013-07-30 20:18:11 +00:00
{
public partial class Mainform : Form
{
public Mainform()
{
InitializeComponent();
}
2013-07-30 20:18:11 +00:00
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
{
Close();
}
private void Mainform_Load(object sender, EventArgs e)
{
}
}
2013-07-30 20:18:11 +00:00
}