From eae2ee7e2982bd2073e5df0df92930e53eede016 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 3 Apr 2020 13:23:26 -0500 Subject: [PATCH] remove DS lua library since it has no methods and no immediately plans to add any --- BizHawk.Client.Common/lua/EmuLuaLibrary.DS.cs | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 BizHawk.Client.Common/lua/EmuLuaLibrary.DS.cs diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.DS.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.DS.cs deleted file mode 100644 index 08ecd51e56..0000000000 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.DS.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.ComponentModel; -using System.Drawing; -using BizHawk.Emulation.Common; -using BizHawk.Emulation.Cores.Consoles.Nintendo.NDS; -using NLua; - -// ReSharper disable UnusedMember.Global -namespace BizHawk.Client.Common.lua -{ - [Description("Functions specific to DSHawk (functions may not run when an NDS game is not loaded)")] - public sealed class DSLuaLibrary : DelegatingLuaLibrary - { - public DSLuaLibrary(Lua lua) - : base(lua) { } - - public DSLuaLibrary(Lua lua, Action logOutputCallback) - : base(lua, logOutputCallback) { } - - public override string Name => "nds"; - - [RequiredService] - public IEmulator Emulator { get; set; } - } -}