using System; using NLua; namespace BizHawk.Client.Common { /// Extends by including an for the library to delegate its calls through. Some APIs may not be delegated. public abstract class DelegatingLuaLibrary : LuaLibraryBase { protected DelegatingLuaLibrary(Lua lua) : base(lua) {} protected DelegatingLuaLibrary(Lua lua, Action logOutputCallback) : base(lua, logOutputCallback) {} public ApiSubsetContainer APIs { protected get; set; } } }