KopiLua.Lua.lua_TValue.lua_TValue C# (CSharp) Method

lua_TValue() public method

public lua_TValue ( lua_TValue copy ) : System
copy lua_TValue
return System
			public lua_TValue(lua_TValue copy)
			{
				this.values = copy.values;
				this.index = copy.index;
				this.value.Copy(copy.value);
				this.tt = copy.tt;
			}

Same methods

Lua.lua_TValue::lua_TValue ( ) : System
Lua.lua_TValue::lua_TValue ( Value value, int tt ) : System