2014-06-22 23:32:37 +00:00
|
|
|
|
using System.Collections.Generic;
|
2016-12-06 01:33:21 +00:00
|
|
|
|
using BizHawk.Emulation.Common;
|
2014-06-22 23:32:37 +00:00
|
|
|
|
|
|
|
|
|
namespace BizHawk.Client.EmuHawk
|
|
|
|
|
{
|
|
|
|
|
public interface IVirtualPadSchema
|
|
|
|
|
{
|
2016-12-06 01:33:21 +00:00
|
|
|
|
IEnumerable<PadSchema> GetPadSchemas(IEmulator core);
|
2014-06-22 23:32:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|