move some lua files to client.common

This commit is contained in:
adelikat 2013-10-31 23:55:17 +00:00
parent ae34ccce0a
commit 3324759799
9 changed files with 12 additions and 7 deletions

View File

@ -101,8 +101,11 @@
<Compile Include="Global.cs" />
<Compile Include="helpers\InputValidate.cs" />
<Compile Include="KeyTurbo.cs" />
<Compile Include="lua\EmuLuaLibrary.Bit.cs" />
<Compile Include="lua\LuaDocumentation.cs" />
<Compile Include="lua\LuaFile.cs" />
<Compile Include="lua\LuaFunctionList.cs" />
<Compile Include="lua\LuaLibraryBase.cs" />
<Compile Include="lua\NamedLuaFunction.cs" />
<Compile Include="movie\InputAdapters.cs" />
<Compile Include="movie\Movie.cs" />

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.MultiClient
namespace BizHawk.Client.Common
{
public class BitLuaLibrary : LuaLibraryBase
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
namespace BizHawk.MultiClient
namespace BizHawk.Client.Common
{
public interface ILuaDocumentation
{

View File

@ -2,7 +2,7 @@
using LuaInterface;
namespace BizHawk.MultiClient
namespace BizHawk.Client.Common
{
public abstract class LuaLibraryBase
{

View File

@ -443,7 +443,6 @@
<Compile Include="tools\HexEditor\MemoryViewer.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.Bit.cs" />
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.Client.cs" />
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.Common.cs" />
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.Console.cs" />
@ -460,7 +459,6 @@
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.NES.cs" />
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.Savestate.cs" />
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.SNES.cs" />
<Compile Include="tools\Lua\Libraries\LuaLibraryBase.cs" />
<Compile Include="tools\Lua\LuaButton.cs">
<SubType>Component</SubType>
</Compile>
@ -470,7 +468,6 @@
<Compile Include="tools\Lua\LuaConsole.Designer.cs">
<DependentUpon>LuaConsole.cs</DependentUpon>
</Compile>
<Compile Include="tools\Lua\LuaDocumentation.cs" />
<Compile Include="tools\Lua\LuaFunctionsForm.cs">
<SubType>Form</SubType>
</Compile>

View File

@ -3,6 +3,7 @@ using System.Linq;
using System.Text;
using LuaInterface;
using BizHawk.Client.Common;
namespace BizHawk.MultiClient
{

View File

@ -5,6 +5,7 @@ using System.Linq;
using System.Windows.Forms;
using LuaInterface;
using BizHawk.Client.Common;
namespace BizHawk.MultiClient
{

View File

@ -1,6 +1,8 @@
using System.Drawing;
using System.Windows.Forms;
using LuaInterface;
using BizHawk.Client.Common;
namespace BizHawk.MultiClient
{

View File

@ -2,7 +2,8 @@
using System.Linq;
using System.Windows.Forms;
using System.Text;
using BizHawk.MultiClient;
using BizHawk.Client.Common;
namespace BizHawk.MultiClient
{