BizHawk/BizHawk.Client.EmuHawk/config/PathInfo.cs

19 lines
272 B
C#

using System;
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk
{
public partial class PathInfo : Form
{
public PathInfo()
{
InitializeComponent();
}
private void Ok_Click(object sender, EventArgs e)
{
Close();
}
}
}