BizHawk/BizHawk.Client.Common/movie/interfaces/IMovieController.cs

16 lines
355 B
C#
Raw Normal View History

2014-06-29 03:03:27 +00:00
using BizHawk.Emulation.Common;
2014-06-16 11:40:57 +00:00
namespace BizHawk.Client.Common
{
public interface IMovieController: IController
{
new ControllerDefinition Type { get; set; }
void LatchPlayerFromSource(IController playerSource, int playerNum);
void LatchFromSource(IController source);
void SetControllersAsMnemonic(string mnemonic);
}
}