Move absract class LuaLibraries to Client.Common

This commit is contained in:
YoshiRulz 2020-11-25 19:12:37 +10:00
parent 6c05361cda
commit a4e2e1ad3f
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 3 deletions

View File

@ -3,10 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading;
using BizHawk.Client.Common;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public abstract class LuaLibraries
{
@ -18,7 +17,7 @@ namespace BizHawk.Client.EmuHawk
public readonly LuaFileList ScriptList = new LuaFileList();
public bool IsRebootingCore { get; set; } // pretty hacky.. we don't want a lua script to be able to restart itself by rebooting the core
public bool IsUpdateSupressed { get; private set;}
public void SupressUpdate()