Move more ApiHawk impl. classes to Client.Common

This commit is contained in:
YoshiRulz 2020-11-29 16:47:47 +10:00
parent ebef47203d
commit d2c514bc51
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
5 changed files with 8 additions and 10 deletions

View File

@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using BizHawk.Client.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES;
using BizHawk.Emulation.Cores.Consoles.Sega.gpgx;
@ -11,7 +11,7 @@ using BizHawk.Emulation.Cores.PCEngine;
using BizHawk.Emulation.Cores.Sega.MasterSystem;
using BizHawk.Emulation.Cores.WonderSwan;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
[Description("A library for interacting with the currently loaded emulator core")]
public sealed class EmulationApi : IEmulationApi

View File

@ -1,9 +1,8 @@
using System.Collections.Generic;
using BizHawk.Client.Common;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public sealed class GameInfoApi : IGameInfoApi
{

View File

@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using BizHawk.Client.Common;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public sealed class JoypadApi : IJoypadApi
{

View File

@ -2,10 +2,10 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using BizHawk.Client.Common;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public sealed class MovieApi : IMovieApi
{

View File

@ -1,7 +1,6 @@
using System;
using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public sealed class UserDataApi : IUserDataApi
{