From a4e2e1ad3fa50fb79b8f19938939d60fd58aa4d1 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 25 Nov 2020 19:12:37 +1000 Subject: [PATCH] Move absract class LuaLibraries to Client.Common --- .../tools/Lua => BizHawk.Client.Common/lua}/LuaLibraries.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename src/{BizHawk.Client.EmuHawk/tools/Lua => BizHawk.Client.Common/lua}/LuaLibraries.cs (96%) diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs b/src/BizHawk.Client.Common/lua/LuaLibraries.cs similarity index 96% rename from src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs rename to src/BizHawk.Client.Common/lua/LuaLibraries.cs index dfd258df0e..a4fbdc85a0 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaLibraries.cs +++ b/src/BizHawk.Client.Common/lua/LuaLibraries.cs @@ -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()