Move DisplaySurface and QuickBmpFile to EmuHawk

This commit is contained in:
YoshiRulz 2021-04-08 16:25:25 +10:00
parent 0bfe3cb6ab
commit 262fc72044
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 5 additions and 3 deletions
src
BizHawk.Client.Common
BizHawk.Client.EmuHawk

View File

@ -4,7 +4,6 @@
</PropertyGroup>
<Import Project="../MainSlnCommon.props" />
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>

View File

@ -1,9 +1,11 @@
using System.Drawing;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using BizHawk.Client.Common;
using BizHawk.Common;
namespace BizHawk.Client.Common
namespace BizHawk.Client.EmuHawk
{
/// <summary>
/// This is a wrapper for a Bitmap, basically, which can also be a int[].

View File

@ -2,6 +2,7 @@
using System.IO;
using System.Runtime.InteropServices;
using BizHawk.Client.Common;
using BizHawk.Common;
using BizHawk.Emulation.Common;
@ -10,7 +11,7 @@ using BizHawk.Emulation.Common;
// ReSharper disable StyleCop.SA1304
// ReSharper disable StyleCop.SA1307
// ReSharper disable StyleCop.SA1401
namespace BizHawk.Client.Common
namespace BizHawk.Client.EmuHawk
{
public readonly struct QuickBmpFile : IQuickBmpFile
{