remove DS lua library since it has no methods and no immediately plans to add any

This commit is contained in:
adelikat 2020-04-03 13:23:26 -05:00
parent 458949a2f9
commit eae2ee7e29
1 changed files with 0 additions and 25 deletions

View File

@ -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<string> logOutputCallback)
: base(lua, logOutputCallback) { }
public override string Name => "nds";
[RequiredService]
public IEmulator Emulator { get; set; }
}
}