Move EmuClientApi to Client.Common project

This commit is contained in:
YoshiRulz 2020-12-03 17:59:30 +10:00
parent 56c681ef0c
commit 4ade496de5
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 3 deletions

View File

@ -5,14 +5,13 @@ using System.IO;
using System.Linq;
using System.Threading.Tasks;
using BizHawk.Client.Common;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Nintendo.Gameboy;
using BizHawk.Emulation.Cores.PCEngine;
using BizHawk.Emulation.Cores.Sega.MasterSystem;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public sealed class EmuClientApi : IEmuClientApi
{
@ -69,7 +68,7 @@ namespace BizHawk.Client.EmuHawk
}
}
internal static readonly BizHawkSystemIdToEnumConverter SystemIdConverter = new BizHawkSystemIdToEnumConverter();
public static readonly BizHawkSystemIdToEnumConverter SystemIdConverter = new BizHawkSystemIdToEnumConverter();
private readonly IVideoProvider VideoProvider;