OpenSim.Region.ScriptEngine.../src/LUA/GenerateEventAssembly/ILuaGeneratedType.cs

11 lines
271 B
C#
Raw Normal View History

2020-08-06 23:19:35 +00:00
namespace NLua
{
/*
* Common interface for types generated from tables. The method
* returns the table that overrides some or all of the type's methods.
*/
public interface ILuaGeneratedType
{
LuaTable LuaInterfaceGetLuaTable();
}
}