BizHawk/BizHawk.Client.EmuHawk/IFolderBrowserDialog.cs

12 lines
238 B
C#

using System;
namespace BizHawk.Client.EmuHawk
{
public interface IFolderBrowserDialog : IHasShowDialog
{
string Description { get; set; }
string SelectedPath { get; set; }
System.Windows.Forms.DialogResult ShowDialog();
}
}