remove unused dependencies in a few lua libraries

This commit is contained in:
adelikat 2020-03-28 09:31:28 -05:00
parent 6c541de69d
commit eea7b2136f
2 changed files with 0 additions and 13 deletions

View File

@ -1,7 +1,6 @@
using System;
using System.ComponentModel;
using NLua;
using BizHawk.Emulation.Common;
using BizHawk.Client.Common;
using System.Text;
@ -10,12 +9,6 @@ namespace BizHawk.Client.EmuHawk
[Description("A library for communicating with other programs")]
public sealed class CommunicationLuaLibrary : LuaLibraryBase
{
[RequiredService]
private IEmulator Emulator { get; set; }
[RequiredService]
private IVideoProvider VideoProvider { get; set; }
public CommunicationLuaLibrary(Lua lua)
: base(lua) { }

View File

@ -1,18 +1,12 @@
using System;
using System.Drawing;
using NLua;
using BizHawk.Emulation.Common;
using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk
{
public sealed class GuiLuaLibrary : DelegatingLuaLibraryEmu, IDisposable
{
[RequiredService]
private IEmulator Emulator { get; set; }
public GuiLuaLibrary(Lua lua)
: base(lua) { }