From 570eff2b8b2f8ec45211fb68b49a98393244540f Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 28 Feb 2016 21:09:06 -0500 Subject: [PATCH] Emulation.Common - Move Emulator Services to their own folder --- .../BizHawk.Emulation.Common.csproj | 26 +++++++++---------- .../{ => Services}/ICodeDataLogger.cs | 0 .../Interfaces/{ => Services}/IDebuggable.cs | 0 .../{ => Services}/IDisassemblable.cs | 0 .../Interfaces/{ => Services}/IDriveLight.cs | 0 .../{ => Services}/IInputPollable.cs | 0 .../Interfaces/{ => Services}/ILinkable.cs | 0 .../{ => Services}/IMemoryDomains.cs | 0 .../Interfaces/{ => Services}/IRegionable.cs | 0 .../Interfaces/{ => Services}/ISaveRam.cs | 0 .../Interfaces/{ => Services}/ISettable.cs | 0 .../Interfaces/{ => Services}/IStatable.cs | 0 .../Interfaces/{ => Services}/ITraceable.cs | 0 .../{ => Services}/IVideoProvider.cs | 0 14 files changed, 13 insertions(+), 13 deletions(-) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/ICodeDataLogger.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IDebuggable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IDisassemblable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IDriveLight.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IInputPollable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/ILinkable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IMemoryDomains.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IRegionable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/ISaveRam.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/ISettable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IStatable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/ITraceable.cs (100%) rename BizHawk.Emulation.Common/Interfaces/{ => Services}/IVideoProvider.cs (100%) diff --git a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj index b717343dbb..bf888b499a 100644 --- a/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj +++ b/BizHawk.Emulation.Common/BizHawk.Emulation.Common.csproj @@ -114,28 +114,28 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/BizHawk.Emulation.Common/Interfaces/ICodeDataLogger.cs b/BizHawk.Emulation.Common/Interfaces/Services/ICodeDataLogger.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/ICodeDataLogger.cs rename to BizHawk.Emulation.Common/Interfaces/Services/ICodeDataLogger.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IDebuggable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IDebuggable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IDebuggable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IDebuggable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IDisassemblable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IDisassemblable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IDisassemblable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IDisassemblable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IDriveLight.cs b/BizHawk.Emulation.Common/Interfaces/Services/IDriveLight.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IDriveLight.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IDriveLight.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IInputPollable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IInputPollable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IInputPollable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IInputPollable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/ILinkable.cs b/BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/ILinkable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/ILinkable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IMemoryDomains.cs b/BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IMemoryDomains.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IMemoryDomains.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IRegionable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IRegionable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IRegionable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IRegionable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/ISaveRam.cs b/BizHawk.Emulation.Common/Interfaces/Services/ISaveRam.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/ISaveRam.cs rename to BizHawk.Emulation.Common/Interfaces/Services/ISaveRam.cs diff --git a/BizHawk.Emulation.Common/Interfaces/ISettable.cs b/BizHawk.Emulation.Common/Interfaces/Services/ISettable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/ISettable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/ISettable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IStatable.cs b/BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IStatable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IStatable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/ITraceable.cs b/BizHawk.Emulation.Common/Interfaces/Services/ITraceable.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/ITraceable.cs rename to BizHawk.Emulation.Common/Interfaces/Services/ITraceable.cs diff --git a/BizHawk.Emulation.Common/Interfaces/IVideoProvider.cs b/BizHawk.Emulation.Common/Interfaces/Services/IVideoProvider.cs similarity index 100% rename from BizHawk.Emulation.Common/Interfaces/IVideoProvider.cs rename to BizHawk.Emulation.Common/Interfaces/Services/IVideoProvider.cs