From a932cef662028b13163ccb082250cc6c066c2fba Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 8 Nov 2014 14:08:32 +0000 Subject: [PATCH] Add a description attribute for EmulatorLuaLibrary --- BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs index a1f8b73725..3a2269d028 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Emu.cs @@ -1,7 +1,9 @@ using System; using System.Collections.Generic; +using System.ComponentModel; using System.Linq; using System.Reflection; + using BizHawk.Emulation.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; using BizHawk.Emulation.Cores.Nintendo.NES; @@ -14,13 +16,12 @@ using LuaInterface; namespace BizHawk.Client.Common { + [Description("A library for interacting with the currently loaded emulator core")] public sealed class EmulatorLuaLibrary : LuaLibraryBase { public Action FrameAdvanceCallback { get; set; } public Action YieldCallback { get; set; } - - public EmulatorLuaLibrary(Lua lua) : base(lua) { }