21 lines
447 B
C#
21 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
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);
|
|
}
|
|
}
|