move EnvironmentSandbox and LuaSandbox to Client.Common
This commit is contained in:
parent
b0ab66801f
commit
0da6e745e5
|
@ -137,6 +137,7 @@
|
|||
<Compile Include="lua\EmuLuaLibrary.SNES.cs" />
|
||||
<Compile Include="lua\EmuLuaLibrary.String.cs" />
|
||||
<Compile Include="lua\EmuLuaLibrary.UserData.cs" />
|
||||
<Compile Include="lua\EnvironmentSandbox.cs" />
|
||||
<Compile Include="lua\LuaAttributes.cs" />
|
||||
<Compile Include="lua\LuaDocumentation.cs" />
|
||||
<Compile Include="lua\LuaFile.cs" />
|
||||
|
@ -145,6 +146,7 @@
|
|||
<Compile Include="lua\LuaHelper.cs" />
|
||||
<Compile Include="lua\LuaLibraryBase.cs" />
|
||||
<Compile Include="lua\LuaMemoryBase.cs" />
|
||||
<Compile Include="lua\LuaSandbox.cs" />
|
||||
<Compile Include="lua\NamedLuaFunction.cs" />
|
||||
<Compile Include="movie\bk2\Bk2ControllerAdapter.cs" />
|
||||
<Compile Include="movie\bk2\Bk2Header.cs" />
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using LuaInterface;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
class LuaSandbox
|
||||
public class LuaSandbox
|
||||
{
|
||||
protected static Action<string> Logger;
|
||||
|
|
@ -822,7 +822,6 @@
|
|||
<Compile Include="tools\HexEditor\NewHexEditor.Designer.cs">
|
||||
<DependentUpon>NewHexEditor.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="tools\Lua\EnvironmentSandbox.cs" />
|
||||
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.Client.cs" />
|
||||
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.Console.cs" />
|
||||
<Compile Include="tools\Lua\Libraries\EmuLuaLibrary.cs" />
|
||||
|
@ -864,7 +863,6 @@
|
|||
<Compile Include="tools\Lua\LuaRegisteredFunctionsList.Designer.cs">
|
||||
<DependentUpon>LuaRegisteredFunctionsList.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="tools\Lua\LuaSandbox.cs" />
|
||||
<Compile Include="tools\Lua\LuaTextBox.cs">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
|
|
Loading…
Reference in New Issue