Move DisplaySurface and QuickBmpFile to EmuHawk
This commit is contained in:
parent
0bfe3cb6ab
commit
262fc72044
|
@ -4,7 +4,6 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="../MainSlnCommon.props" />
|
<Import Project="../MainSlnCommon.props" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
||||||
<Nullable>disable</Nullable>
|
<Nullable>disable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Drawing.Imaging;
|
using System.Drawing.Imaging;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
using BizHawk.Client.Common;
|
||||||
using BizHawk.Common;
|
using BizHawk.Common;
|
||||||
|
|
||||||
namespace BizHawk.Client.Common
|
namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This is a wrapper for a Bitmap, basically, which can also be a int[].
|
/// This is a wrapper for a Bitmap, basically, which can also be a int[].
|
|
@ -2,6 +2,7 @@
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
using BizHawk.Client.Common;
|
||||||
using BizHawk.Common;
|
using BizHawk.Common;
|
||||||
using BizHawk.Emulation.Common;
|
using BizHawk.Emulation.Common;
|
||||||
|
|
||||||
|
@ -10,7 +11,7 @@ using BizHawk.Emulation.Common;
|
||||||
// ReSharper disable StyleCop.SA1304
|
// ReSharper disable StyleCop.SA1304
|
||||||
// ReSharper disable StyleCop.SA1307
|
// ReSharper disable StyleCop.SA1307
|
||||||
// ReSharper disable StyleCop.SA1401
|
// ReSharper disable StyleCop.SA1401
|
||||||
namespace BizHawk.Client.Common
|
namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
public readonly struct QuickBmpFile : IQuickBmpFile
|
public readonly struct QuickBmpFile : IQuickBmpFile
|
||||||
{
|
{
|
Loading…
Reference in New Issue