oops
This commit is contained in:
parent
1f1bb93360
commit
128f81bbb0
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using BizHawk.Emulation.Common;
|
||||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
// Lot's of todos here
|
||||
public static class MnemonicGeneratorFactory
|
||||
{
|
||||
public static IMnemonicPorts Generate()
|
||||
{
|
||||
switch (Global.Emulator.SystemId)
|
||||
{
|
||||
default:
|
||||
case "NES":
|
||||
return new NesMnemonicGenerator(Global.MovieOutputHardpoint, false, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue