BizHawk/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs

19 lines
446 B
C#

namespace BizHawk.Client.EmuHawk
{
public partial class TAStudio : IControlMainform
{
public bool WantsToControlReadOnly { get { return true; } }
public void ToggleReadOnly()
{
GlobalWin.OSD.AddMessage("TAStudio does not allow manual readonly toggle");
}
public bool WantsToCOntrolStopMovie { get { return true; } }
public void StopMovie()
{
this.Focus();
NewTasMenuItem_Click(null, null);
}
}
}