├── README.md ├── XLua ├── .gitignore ├── Assets │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── libs.meta │ │ │ └── libs │ │ │ │ ├── armeabi-v7a.meta │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── libxlua.so │ │ │ │ └── libxlua.so.meta │ │ │ │ ├── x86.meta │ │ │ │ └── x86 │ │ │ │ ├── libxlua.so │ │ │ │ └── libxlua.so.meta │ │ ├── iOS.meta │ │ ├── iOS │ │ │ ├── libxlua.a │ │ │ └── libxlua.a.meta │ │ ├── x86.meta │ │ ├── x86 │ │ │ ├── xlua.dll │ │ │ └── xlua.dll.meta │ │ ├── x86_64.meta │ │ ├── x86_64 │ │ │ ├── xlua.dll │ │ │ └── xlua.dll.meta │ │ ├── xlua.bundle.meta │ │ └── xlua.bundle │ │ │ ├── Contents.meta │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── Info.plist.meta │ │ │ ├── MacOS.meta │ │ │ └── MacOS │ │ │ ├── xlua │ │ │ └── xlua.meta │ ├── XLua.meta │ └── XLua │ │ ├── CHANGELOG.txt │ │ ├── CHANGELOG.txt.meta │ │ ├── Doc.meta │ │ ├── Doc │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── logo.mat │ │ │ └── logo.mat.meta │ │ ├── XLua_API.doc │ │ ├── XLua_API.doc.meta │ │ ├── XLua增加删除第三方lua库.doc │ │ ├── XLua增加删除第三方lua库.doc.meta │ │ ├── XLua复杂值类型(struct)gc优化指南.doc │ │ ├── XLua复杂值类型(struct)gc优化指南.doc.meta │ │ ├── XLua性能分析工具.doc │ │ ├── XLua性能分析工具.doc.meta │ │ ├── XLua教程.doc │ │ ├── XLua教程.doc.meta │ │ ├── XLua的配置.doc │ │ ├── XLua的配置.doc.meta │ │ ├── custom_generate.md │ │ ├── custom_generate.md.meta │ │ ├── faq.md │ │ ├── faq.md.meta │ │ ├── features.md │ │ ├── features.md.meta │ │ ├── hotfix.md │ │ ├── hotfix.md.meta │ │ ├── logo.png │ │ ├── logo.png.meta │ │ ├── xLua.png │ │ └── xLua.png.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ ├── 01_Helloworld.meta │ │ ├── 01_Helloworld │ │ │ ├── Helloworld.cs │ │ │ ├── Helloworld.cs.meta │ │ │ ├── Helloworld.unity │ │ │ └── Helloworld.unity.meta │ │ ├── 02_U3DScripting.meta │ │ ├── 02_U3DScripting │ │ │ ├── LuaBehaviour.cs │ │ │ ├── LuaBehaviour.cs.meta │ │ │ ├── LuaTestScript.lua.txt │ │ │ ├── LuaTestScript.lua.txt.meta │ │ │ ├── U3DScripting.unity │ │ │ └── U3DScripting.unity.meta │ │ ├── 03_UIEvent.meta │ │ ├── 03_UIEvent │ │ │ ├── ButtonInteraction.lua.txt │ │ │ ├── ButtonInteraction.lua.txt.meta │ │ │ ├── UI.unity │ │ │ └── UI.unity.meta │ │ ├── 04_LuaObjectOrented.meta │ │ ├── 04_LuaObjectOrented │ │ │ ├── InvokeLua.cs │ │ │ ├── InvokeLua.cs.meta │ │ │ ├── InvokeLua.unity │ │ │ └── InvokeLua.unity.meta │ │ ├── 05_NoGc.meta │ │ ├── 05_NoGc │ │ │ ├── NoGc.cs │ │ │ ├── NoGc.cs.meta │ │ │ ├── NoGc.unity │ │ │ └── NoGc.unity.meta │ │ ├── 06_Coroutine.meta │ │ ├── 06_Coroutine │ │ │ ├── Coroutine.cs │ │ │ ├── Coroutine.cs.meta │ │ │ ├── Coroutine.unity │ │ │ ├── Coroutine.unity.meta │ │ │ ├── Coroutine_Runner.cs │ │ │ ├── Coroutine_Runner.cs.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── coruntine_test.lua.txt │ │ │ │ ├── coruntine_test.lua.txt.meta │ │ │ │ ├── cs_coroutine.lua.txt │ │ │ │ └── cs_coroutine.lua.txt.meta │ │ ├── 07_AsyncTest.meta │ │ ├── 07_AsyncTest │ │ │ ├── AsyncTest.cs │ │ │ ├── AsyncTest.cs.meta │ │ │ ├── AsyncTest.unity │ │ │ ├── AsyncTest.unity.meta │ │ │ ├── MessageBox.cs │ │ │ ├── MessageBox.cs.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── AlertBox.prefab │ │ │ │ ├── AlertBox.prefab.meta │ │ │ │ ├── ConfirmBox.prefab │ │ │ │ ├── ConfirmBox.prefab.meta │ │ │ │ ├── async_test.lua.txt │ │ │ │ ├── async_test.lua.txt.meta │ │ │ │ ├── message_box.lua.txt │ │ │ │ └── message_box.lua.txt.meta │ │ ├── 08_Hotfix.meta │ │ ├── 08_Hotfix │ │ │ ├── HotfixTest.cs │ │ │ ├── HotfixTest.cs.meta │ │ │ ├── HotfixTest.unity │ │ │ ├── HotfixTest.unity.meta │ │ │ ├── HotfixTest2.cs │ │ │ ├── HotfixTest2.cs.meta │ │ │ ├── HotfixTest2.unity │ │ │ ├── HotfixTest2.unity.meta │ │ │ ├── StatefullTest.cs │ │ │ └── StatefullTest.cs.meta │ │ ├── 09_GenericMethod.meta │ │ ├── 09_GenericMethod │ │ │ ├── Foo.cs │ │ │ ├── Foo.cs.meta │ │ │ ├── GenericMethod.unity │ │ │ ├── GenericMethod.unity.meta │ │ │ ├── GenericMethodExample.cs │ │ │ └── GenericMethodExample.cs.meta │ │ ├── ExampleGenConfig.cs │ │ └── ExampleGenConfig.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── perf.meta │ │ ├── perf │ │ │ ├── memory.lua.txt │ │ │ ├── memory.lua.txt.meta │ │ │ ├── profiler.lua.txt │ │ │ └── profiler.lua.txt.meta │ │ ├── tdr.meta │ │ ├── tdr │ │ │ ├── tdr.lua.txt │ │ │ └── tdr.lua.txt.meta │ │ ├── xlua.meta │ │ └── xlua │ │ │ ├── util.lua.txt │ │ │ └── util.lua.txt.meta │ │ ├── Src.meta │ │ ├── Src │ │ ├── CodeEmit.cs │ │ ├── CodeEmit.cs.meta │ │ ├── CopyByValue.cs │ │ ├── CopyByValue.cs.meta │ │ ├── DelegateBridge.cs │ │ ├── DelegateBridge.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Generator.cs │ │ │ ├── Generator.cs.meta │ │ │ ├── Hotfix.cs │ │ │ ├── Hotfix.cs.meta │ │ │ ├── LinkXmlGen.meta │ │ │ ├── LinkXmlGen │ │ │ │ ├── LinkXmlGen.cs │ │ │ │ ├── LinkXmlGen.cs.meta │ │ │ │ ├── LinkXmlGen.tpl.txt │ │ │ │ └── LinkXmlGen.tpl.txt.meta │ │ │ ├── Template.meta │ │ │ ├── Template │ │ │ │ ├── LuaClassWrap.tpl.txt │ │ │ │ ├── LuaClassWrap.tpl.txt.meta │ │ │ │ ├── LuaDelegateBridge.tpl.txt │ │ │ │ ├── LuaDelegateBridge.tpl.txt.meta │ │ │ │ ├── LuaDelegateWrap.tpl.txt │ │ │ │ ├── LuaDelegateWrap.tpl.txt.meta │ │ │ │ ├── LuaEnumWrap.tpl.txt │ │ │ │ ├── LuaEnumWrap.tpl.txt.meta │ │ │ │ ├── LuaInterfaceBridge.tpl.txt │ │ │ │ ├── LuaInterfaceBridge.tpl.txt.meta │ │ │ │ ├── LuaRegister.tpl.txt │ │ │ │ ├── LuaRegister.tpl.txt.meta │ │ │ │ ├── LuaWrapPusher.tpl.txt │ │ │ │ ├── LuaWrapPusher.tpl.txt.meta │ │ │ │ ├── PackUnpack.tpl.txt │ │ │ │ ├── PackUnpack.tpl.txt.meta │ │ │ │ ├── TemplateCommon.lua.txt │ │ │ │ └── TemplateCommon.lua.txt.meta │ │ │ ├── TemplateRef.cs │ │ │ └── TemplateRef.cs.meta │ │ ├── GenAttributes.cs │ │ ├── GenAttributes.cs.meta │ │ ├── GenConfig.cs │ │ ├── GenConfig.cs.meta │ │ ├── LuaBase.cs │ │ ├── LuaBase.cs.meta │ │ ├── LuaDLL.cs │ │ ├── LuaDLL.cs.meta │ │ ├── LuaEnv.cs │ │ ├── LuaEnv.cs.meta │ │ ├── LuaException.cs │ │ ├── LuaException.cs.meta │ │ ├── LuaFunction.cs │ │ ├── LuaFunction.cs.meta │ │ ├── LuaTable.cs │ │ ├── LuaTable.cs.meta │ │ ├── MethodWarpsCache.cs │ │ ├── MethodWarpsCache.cs.meta │ │ ├── ObjectCasters.cs │ │ ├── ObjectCasters.cs.meta │ │ ├── ObjectPool.cs │ │ ├── ObjectPool.cs.meta │ │ ├── ObjectTranslator.cs │ │ ├── ObjectTranslator.cs.meta │ │ ├── ObjectTranslatorPool.cs │ │ ├── ObjectTranslatorPool.cs.meta │ │ ├── StaticLuaCallbacks.cs │ │ ├── StaticLuaCallbacks.cs.meta │ │ ├── TemplateEngine.meta │ │ ├── TemplateEngine │ │ │ ├── TemplateEngine.cs │ │ │ └── TemplateEngine.cs.meta │ │ ├── Utils.cs │ │ └── Utils.cs.meta │ │ ├── Tutorial.meta │ │ └── Tutorial │ │ ├── CSharpCallLua.meta │ │ ├── CSharpCallLua │ │ ├── CSCallLua.cs │ │ ├── CSCallLua.cs.meta │ │ ├── CSCallLua.unity │ │ └── CSCallLua.unity.meta │ │ ├── LoadLuaScript.meta │ │ ├── LoadLuaScript │ │ ├── ByFile.meta │ │ ├── ByFile │ │ │ ├── ByFile.cs │ │ │ ├── ByFile.cs.meta │ │ │ ├── ByFile.unity │ │ │ ├── ByFile.unity.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── byfile.lua.txt │ │ │ │ └── byfile.lua.txt.meta │ │ ├── ByString.meta │ │ ├── ByString │ │ │ ├── ByString.cs │ │ │ ├── ByString.cs.meta │ │ │ ├── ByString.unity │ │ │ └── ByString.unity.meta │ │ ├── Loader.meta │ │ └── Loader │ │ │ ├── CustomLoader.cs │ │ │ ├── CustomLoader.cs.meta │ │ │ ├── CustomLoader.unity │ │ │ └── CustomLoader.unity.meta │ │ ├── LuaCallCSharp.meta │ │ └── LuaCallCSharp │ │ ├── LuaCallCs.cs │ │ ├── LuaCallCs.cs.meta │ │ ├── LuaCallCs.unity │ │ └── LuaCallCs.unity.meta ├── General │ ├── Src │ │ ├── XLuaGenerate.cs │ │ ├── XLuaHotfixInject.cs │ │ └── XLuaTest.cs │ └── vs2013 │ │ ├── XLua.Mini.csproj │ │ ├── XLua.sln │ │ ├── XLuaGenerate.csproj │ │ ├── XLuaHotfixInject.csproj │ │ ├── XLuaTest.csproj │ │ └── XLuaTestGenCode.csproj ├── LICENSE.TXT ├── README.md ├── Test │ ├── PrefTest │ │ ├── Resources │ │ │ ├── luaTest.lua.txt │ │ │ └── luaTest.lua.txt.meta │ │ └── xLuaPerfTest │ │ │ ├── Main.unity │ │ │ ├── Main.unity.meta │ │ │ ├── PeformentTestConfig.cs │ │ │ ├── PeformentTestConfig.cs.meta │ │ │ ├── PerfMain.cs │ │ │ └── PerfMain.cs.meta │ ├── README.md │ └── UnitTest │ │ ├── StreamingAssets │ │ ├── D.lua │ │ ├── D.lua.meta │ │ ├── csCallLua.lua │ │ ├── csCallLua.lua.meta │ │ ├── genCode.lua │ │ ├── genCode.lua.meta │ │ ├── ltest.meta │ │ ├── ltest │ │ │ ├── init.lua │ │ │ ├── init.lua.meta │ │ │ ├── lassert.lua │ │ │ ├── lassert.lua.meta │ │ │ ├── loutput.lua │ │ │ └── loutput.lua.meta │ │ ├── luaCallCs.lua │ │ ├── luaCallCs.lua.meta │ │ ├── luaCallCsReflect.lua │ │ ├── luaCallCsReflect.lua.meta │ │ ├── luaTdrTest.lua │ │ ├── luaTdrTest.lua.meta │ │ ├── main.lua │ │ ├── main.lua.meta │ │ ├── testlua.meta │ │ ├── testlua │ │ │ ├── B.lua │ │ │ ├── B.lua.meta │ │ │ ├── C.lua.txt │ │ │ ├── C.lua.txt.meta │ │ │ ├── main.lua │ │ │ └── main.lua.meta │ │ ├── testxxx.tdr │ │ ├── testxxx.tdr.meta │ │ ├── testxxx2.tdr │ │ └── testxxx2.tdr.meta │ │ └── xLuaTest │ │ ├── CSharpCallLua.meta │ │ ├── CSharpCallLua │ │ ├── CSObjectForTestCSCallLua.cs │ │ ├── CSObjectForTestCSCallLua.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── A.lua.txt │ │ │ ├── A.lua.txt.meta │ │ │ ├── D.lua.txt │ │ │ ├── D.lua.txt.meta │ │ │ ├── E.lua │ │ │ ├── E.lua.meta │ │ │ ├── InFile.lua.txt │ │ │ ├── InFile.lua.txt.meta │ │ │ ├── empty.lua.txt │ │ │ ├── empty.lua.txt.meta │ │ │ ├── error.lua.txt │ │ │ └── error.lua.txt.meta │ │ ├── TCForTestCSCallLua.cs │ │ ├── TCForTestCSCallLua.cs.meta │ │ ├── TestCSCallLua.cs │ │ ├── TestCSCallLua.cs.meta │ │ ├── TestCSCallLua.unity │ │ └── TestCSCallLua.unity.meta │ │ ├── LuaCallCS.meta │ │ ├── LuaCallCS │ │ ├── CSObjectForLuaCallCS.cs │ │ └── CSObjectForLuaCallCS.cs.meta │ │ ├── LuaTestCommon.cs │ │ ├── LuaTestCommon.cs.meta │ │ ├── LuaTestObj.cs │ │ ├── LuaTestObj.cs.meta │ │ ├── LuaTestObjReflect.cs │ │ ├── LuaTestObjReflect.cs.meta │ │ ├── Main.cs │ │ ├── Main.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── non_tlv_net_msg_type.xml │ │ ├── non_tlv_net_msg_type.xml.meta │ │ ├── non_tlv_net_protocol.xml │ │ ├── non_tlv_net_protocol.xml.meta │ │ ├── non_tlv_net_protocol_v4.xml │ │ ├── non_tlv_net_protocol_v4.xml.meta │ │ ├── testxxx.tdr.bytes │ │ ├── testxxx.tdr.bytes.meta │ │ ├── testxxx2.tdr.bytes │ │ └── testxxx2.tdr.bytes.meta │ │ ├── main.unity │ │ └── main.unity.meta └── build │ ├── CMakeLists.txt │ ├── cmake │ ├── android.toolchain.cmake │ └── iOS.cmake │ ├── i64lib.c │ ├── i64lib.h │ ├── lua-5.1.5 │ ├── COPYRIGHT │ ├── HISTORY │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── cover.png │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── lua.html │ │ ├── luac.1 │ │ ├── luac.html │ │ ├── manual.css │ │ ├── manual.html │ │ └── readme.html │ ├── etc │ │ ├── Makefile │ │ ├── README │ │ ├── all.c │ │ ├── lua.hpp │ │ ├── lua.ico │ │ ├── lua.pc │ │ ├── luavs.bat │ │ ├── min.c │ │ ├── noparser.c │ │ └── strict.lua │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ └── print.c │ ├── lua-5.3.3 │ ├── CMakeLists.txt │ ├── Makefile │ ├── README │ ├── cmake │ │ ├── FindLua.cmake │ │ ├── FindReadline.cmake │ │ ├── dist.cmake │ │ └── lua.cmake │ ├── dist.info │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ ├── etc │ │ ├── lua.ico │ │ ├── lua.pc │ │ └── lua_lang.ico │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── loadlib_rel.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── lua.rc │ │ ├── luac.c │ │ ├── luac.rc │ │ ├── luaconf.h.in │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ ├── lzio.h │ │ └── wmain.c │ ├── luajit-2.1.0b2 │ ├── COPYRIGHT │ ├── Makefile │ ├── README │ ├── doc │ │ ├── bluequad-print.css │ │ ├── bluequad.css │ │ ├── changes.html │ │ ├── contact.html │ │ ├── ext_c_api.html │ │ ├── ext_ffi.html │ │ ├── ext_ffi_api.html │ │ ├── ext_ffi_semantics.html │ │ ├── ext_ffi_tutorial.html │ │ ├── ext_jit.html │ │ ├── ext_profiler.html │ │ ├── extensions.html │ │ ├── faq.html │ │ ├── img │ │ │ └── contact.png │ │ ├── install.html │ │ ├── luajit.html │ │ ├── running.html │ │ └── status.html │ ├── dynasm │ │ ├── dasm_arm.h │ │ ├── dasm_arm.lua │ │ ├── dasm_arm64.h │ │ ├── dasm_arm64.lua │ │ ├── dasm_mips.h │ │ ├── dasm_mips.lua │ │ ├── dasm_ppc.h │ │ ├── dasm_ppc.lua │ │ ├── dasm_proto.h │ │ ├── dasm_x64.lua │ │ ├── dasm_x86.h │ │ ├── dasm_x86.lua │ │ └── dynasm.lua │ ├── etc │ │ ├── luajit.1 │ │ └── luajit.pc │ └── src │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── host │ │ ├── README │ │ ├── buildvm.c │ │ ├── buildvm.h │ │ ├── buildvm_asm.c │ │ ├── buildvm_fold.c │ │ ├── buildvm_lib.c │ │ ├── buildvm_libbc.h │ │ ├── buildvm_peobj.c │ │ ├── genlibbc.lua │ │ ├── genminilua.lua │ │ └── minilua.c │ │ ├── jit │ │ ├── bc.lua │ │ ├── bcsave.lua │ │ ├── dis_arm.lua │ │ ├── dis_mips.lua │ │ ├── dis_mipsel.lua │ │ ├── dis_ppc.lua │ │ ├── dis_x64.lua │ │ ├── dis_x86.lua │ │ ├── dump.lua │ │ ├── p.lua │ │ ├── v.lua │ │ └── zone.lua │ │ ├── lauxlib.h │ │ ├── lib_aux.c │ │ ├── lib_base.c │ │ ├── lib_bit.c │ │ ├── lib_debug.c │ │ ├── lib_ffi.c │ │ ├── lib_init.c │ │ ├── lib_io.c │ │ ├── lib_jit.c │ │ ├── lib_math.c │ │ ├── lib_os.c │ │ ├── lib_package.c │ │ ├── lib_string.c │ │ ├── lib_table.c │ │ ├── lj.supp │ │ ├── lj_alloc.c │ │ ├── lj_alloc.h │ │ ├── lj_api.c │ │ ├── lj_arch.h │ │ ├── lj_asm.c │ │ ├── lj_asm.h │ │ ├── lj_asm_arm.h │ │ ├── lj_asm_mips.h │ │ ├── lj_asm_ppc.h │ │ ├── lj_asm_x86.h │ │ ├── lj_bc.c │ │ ├── lj_bc.h │ │ ├── lj_bcdump.h │ │ ├── lj_bcread.c │ │ ├── lj_bcwrite.c │ │ ├── lj_buf.c │ │ ├── lj_buf.h │ │ ├── lj_carith.c │ │ ├── lj_carith.h │ │ ├── lj_ccall.c │ │ ├── lj_ccall.h │ │ ├── lj_ccallback.c │ │ ├── lj_ccallback.h │ │ ├── lj_cconv.c │ │ ├── lj_cconv.h │ │ ├── lj_cdata.c │ │ ├── lj_cdata.h │ │ ├── lj_char.c │ │ ├── lj_char.h │ │ ├── lj_clib.c │ │ ├── lj_clib.h │ │ ├── lj_cparse.c │ │ ├── lj_cparse.h │ │ ├── lj_crecord.c │ │ ├── lj_crecord.h │ │ ├── lj_ctype.c │ │ ├── lj_ctype.h │ │ ├── lj_debug.c │ │ ├── lj_debug.h │ │ ├── lj_def.h │ │ ├── lj_dispatch.c │ │ ├── lj_dispatch.h │ │ ├── lj_emit_arm.h │ │ ├── lj_emit_mips.h │ │ ├── lj_emit_ppc.h │ │ ├── lj_emit_x86.h │ │ ├── lj_err.c │ │ ├── lj_err.h │ │ ├── lj_errmsg.h │ │ ├── lj_ff.h │ │ ├── lj_ffrecord.c │ │ ├── lj_ffrecord.h │ │ ├── lj_frame.h │ │ ├── lj_func.c │ │ ├── lj_func.h │ │ ├── lj_gc.c │ │ ├── lj_gc.h │ │ ├── lj_gdbjit.c │ │ ├── lj_gdbjit.h │ │ ├── lj_ir.c │ │ ├── lj_ir.h │ │ ├── lj_ircall.h │ │ ├── lj_iropt.h │ │ ├── lj_jit.h │ │ ├── lj_lex.c │ │ ├── lj_lex.h │ │ ├── lj_lib.c │ │ ├── lj_lib.h │ │ ├── lj_load.c │ │ ├── lj_mcode.c │ │ ├── lj_mcode.h │ │ ├── lj_meta.c │ │ ├── lj_meta.h │ │ ├── lj_obj.c │ │ ├── lj_obj.h │ │ ├── lj_opt_dce.c │ │ ├── lj_opt_fold.c │ │ ├── lj_opt_loop.c │ │ ├── lj_opt_mem.c │ │ ├── lj_opt_narrow.c │ │ ├── lj_opt_sink.c │ │ ├── lj_opt_split.c │ │ ├── lj_parse.c │ │ ├── lj_parse.h │ │ ├── lj_profile.c │ │ ├── lj_profile.h │ │ ├── lj_record.c │ │ ├── lj_record.h │ │ ├── lj_snap.c │ │ ├── lj_snap.h │ │ ├── lj_state.c │ │ ├── lj_state.h │ │ ├── lj_str.c │ │ ├── lj_str.h │ │ ├── lj_strfmt.c │ │ ├── lj_strfmt.h │ │ ├── lj_strfmt_num.c │ │ ├── lj_strscan.c │ │ ├── lj_strscan.h │ │ ├── lj_tab.c │ │ ├── lj_tab.h │ │ ├── lj_target.h │ │ ├── lj_target_arm.h │ │ ├── lj_target_arm64.h │ │ ├── lj_target_mips.h │ │ ├── lj_target_ppc.h │ │ ├── lj_target_x86.h │ │ ├── lj_trace.c │ │ ├── lj_trace.h │ │ ├── lj_traceerr.h │ │ ├── lj_udata.c │ │ ├── lj_udata.h │ │ ├── lj_vm.h │ │ ├── lj_vmevent.c │ │ ├── lj_vmevent.h │ │ ├── lj_vmmath.c │ │ ├── ljamalg.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── luajit.c │ │ ├── luajit.h │ │ ├── lualib.h │ │ ├── msvcbuild.bat │ │ ├── msvcbuild_mt.bat │ │ ├── msvcbuild_xlua.bat │ │ ├── ps4build.bat │ │ ├── psvitabuild.bat │ │ ├── vm_arm.dasc │ │ ├── vm_arm64.dasc │ │ ├── vm_mips.dasc │ │ ├── vm_ppc.dasc │ │ ├── vm_x64.dasc │ │ ├── vm_x86.dasc │ │ ├── xb1build.bat │ │ └── xedkbuild.bat │ ├── luasocket │ ├── auxiliar.c │ ├── auxiliar.h │ ├── buffer.c │ ├── buffer.h │ ├── except.c │ ├── except.h │ ├── inet.c │ ├── inet.h │ ├── io.c │ ├── io.h │ ├── luasocket.c │ ├── luasocket.h │ ├── luasocket_scripts.c │ ├── luasocket_scripts.h │ ├── mime.c │ ├── mime.h │ ├── options.c │ ├── options.h │ ├── select.c │ ├── select.h │ ├── serial.c │ ├── socket.h │ ├── tcp.c │ ├── tcp.h │ ├── timeout.c │ ├── timeout.h │ ├── udp.c │ ├── udp.h │ ├── unix.c │ ├── unix.h │ ├── usocket.c │ ├── usocket.h │ ├── wsocket.c │ └── wsocket.h │ ├── make_android_lua53.sh │ ├── make_android_luajit.sh │ ├── make_ios_lua53.sh │ ├── make_ios_luajit.sh │ ├── make_osx_lua53.sh │ ├── make_osx_luajit.sh │ ├── make_win32_lua53.bat │ ├── make_win32_luajit.bat │ ├── make_win64_lua53.bat │ ├── make_win64_luajit.bat │ ├── perflib.c │ ├── plugin_lua53 │ └── Plugins │ │ └── xlua.bundle │ │ └── Contents │ │ └── Info.plist │ ├── plugin_luajit │ └── Plugins │ │ └── xlua.bundle │ │ └── Contents │ │ └── Info.plist │ └── xlua.c └── XluaFramework ├── .gitignore ├── .vs └── XluaFramework │ └── v14 │ └── .suo ├── Assets ├── Plugins.meta ├── Plugins │ ├── Android.meta │ ├── Android │ │ ├── libs.meta │ │ └── libs │ │ │ ├── armeabi-v7a.meta │ │ │ ├── armeabi-v7a │ │ │ ├── libxlua.so │ │ │ └── libxlua.so.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ ├── libxlua.so │ │ │ └── libxlua.so.meta │ ├── iOS.meta │ ├── iOS │ │ ├── libxlua.a │ │ └── libxlua.a.meta │ ├── x86.meta │ ├── x86 │ │ ├── xlua.dll │ │ └── xlua.dll.meta │ ├── x86_64.meta │ ├── x86_64 │ │ ├── xlua.dll │ │ └── xlua.dll.meta │ ├── xlua.bundle.meta │ └── xlua.bundle │ │ ├── Contents.meta │ │ └── Contents │ │ ├── Info.plist │ │ ├── Info.plist.meta │ │ └── MacOS.meta ├── XLua.meta ├── XLuaFramework.meta ├── XLuaFramework │ ├── Editor.meta │ ├── Editor │ │ ├── CustomSettings.cs │ │ ├── CustomSettings.cs.meta │ │ ├── Packager.cs │ │ └── Packager.cs.meta │ ├── Examples.meta │ ├── Examples │ │ ├── Builds.meta │ │ ├── Builds │ │ │ ├── Message.meta │ │ │ ├── Message │ │ │ │ ├── MessagePanel.prefab │ │ │ │ └── MessagePanel.prefab.meta │ │ │ ├── Prompt.meta │ │ │ └── Prompt │ │ │ │ ├── PromptItem.prefab │ │ │ │ ├── PromptItem.prefab.meta │ │ │ │ ├── PromptPanel.prefab │ │ │ │ └── PromptPanel.prefab.meta │ │ ├── Editor Default Resources.meta │ │ ├── Editor Default Resources │ │ │ ├── WelcomeScreenContactIcon.png │ │ │ ├── WelcomeScreenContactIcon.png.meta │ │ │ ├── WelcomeScreenDocumentationIcon.png │ │ │ ├── WelcomeScreenDocumentationIcon.png.meta │ │ │ ├── WelcomeScreenForumIcon.png │ │ │ ├── WelcomeScreenForumIcon.png.meta │ │ │ ├── WelcomeScreenHeader.png │ │ │ ├── WelcomeScreenHeader.png.meta │ │ │ ├── WelcomeScreenSamplesIcon.png │ │ │ ├── WelcomeScreenSamplesIcon.png.meta │ │ │ ├── WelcomeScreenVideosIcon.png │ │ │ └── WelcomeScreenVideosIcon.png.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── WelcomeScreen.cs │ │ │ └── WelcomeScreen.cs.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Prompt.meta │ │ │ ├── Prompt │ │ │ ├── 1.png │ │ │ └── 1.png.meta │ │ │ ├── Shared.meta │ │ │ └── Shared │ │ │ ├── ButtonClick.png │ │ │ ├── ButtonClick.png.meta │ │ │ ├── ButtonDisable.png │ │ │ ├── ButtonDisable.png.meta │ │ │ ├── ButtonNormal.png │ │ │ ├── ButtonNormal.png.meta │ │ │ ├── SmallBaseMap.png │ │ │ └── SmallBaseMap.png.meta │ ├── Lua.meta │ ├── Lua │ │ ├── main.lua │ │ └── main.lua.meta │ ├── Resources.meta │ ├── Resources │ │ ├── TestGameObjectPrefab.prefab │ │ └── TestGameObjectPrefab.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── main.unity │ │ └── main.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── ConstDefine.meta │ │ ├── ConstDefine │ │ │ ├── AppConst.cs │ │ │ ├── AppConst.cs.meta │ │ │ ├── ManagerName.cs │ │ │ ├── ManagerName.cs.meta │ │ │ ├── NotiConst.cs │ │ │ └── NotiConst.cs.meta │ │ ├── Controller.meta │ │ ├── Controller │ │ │ ├── Command.meta │ │ │ └── Command │ │ │ │ ├── SocketCommand.cs │ │ │ │ ├── SocketCommand.cs.meta │ │ │ │ ├── StartUpCommand.cs │ │ │ │ └── StartUpCommand.cs.meta │ │ ├── Framework.meta │ │ ├── Framework │ │ │ ├── AppFacade.cs │ │ │ ├── AppFacade.cs.meta │ │ │ ├── Attribute.meta │ │ │ ├── Attribute │ │ │ │ ├── BindViewAttribute.cs │ │ │ │ ├── BindViewAttribute.cs.meta │ │ │ │ ├── OnClickAttribute.cs │ │ │ │ └── OnClickAttribute.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── Base.cs │ │ │ │ ├── Base.cs.meta │ │ │ │ ├── Controller.cs │ │ │ │ ├── Controller.cs.meta │ │ │ │ ├── Facade.cs │ │ │ │ ├── Facade.cs.meta │ │ │ │ ├── Manager.cs │ │ │ │ ├── Manager.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ ├── Message.cs.meta │ │ │ │ ├── View.cs │ │ │ │ └── View.cs.meta │ │ │ ├── Interfaces.meta │ │ │ └── Interfaces │ │ │ │ ├── ICommand.cs │ │ │ │ ├── ICommand.cs.meta │ │ │ │ ├── IController.cs │ │ │ │ ├── IController.cs.meta │ │ │ │ ├── IManager.cs │ │ │ │ ├── IManager.cs.meta │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IMessage.cs.meta │ │ │ │ ├── IView.cs │ │ │ │ └── IView.cs.meta │ │ ├── Main.cs │ │ ├── Main.cs.meta │ │ ├── Manager.meta │ │ ├── Manager │ │ │ ├── GameManager.cs │ │ │ ├── GameManager.cs.meta │ │ │ ├── Interface.meta │ │ │ ├── Interface │ │ │ │ ├── ITimerBehaviour.cs │ │ │ │ └── ITimerBehaviour.cs.meta │ │ │ ├── LuaManager.cs │ │ │ ├── LuaManager.cs.meta │ │ │ ├── NetworkManager.cs │ │ │ ├── NetworkManager.cs.meta │ │ │ ├── ObjectPoolManager.cs │ │ │ ├── ObjectPoolManager.cs.meta │ │ │ ├── PanelManager.cs │ │ │ ├── PanelManager.cs.meta │ │ │ ├── ResourceManager.cs │ │ │ ├── ResourceManager.cs.meta │ │ │ ├── SoundManager.cs │ │ │ ├── SoundManager.cs.meta │ │ │ ├── ThreadManager.cs │ │ │ ├── ThreadManager.cs.meta │ │ │ ├── TimerManager.cs │ │ │ └── TimerManager.cs.meta │ │ ├── Network.meta │ │ ├── Network │ │ │ ├── ByteBuffer.cs │ │ │ ├── ByteBuffer.cs.meta │ │ │ ├── Converter.cs │ │ │ ├── Converter.cs.meta │ │ │ ├── Protocal.cs │ │ │ ├── Protocal.cs.meta │ │ │ ├── SocketClient.cs │ │ │ └── SocketClient.cs.meta │ │ ├── ObjectPool.meta │ │ ├── ObjectPool │ │ │ ├── GameObjectPool.cs │ │ │ ├── GameObjectPool.cs.meta │ │ │ ├── ObjectPool.cs │ │ │ ├── ObjectPool.cs.meta │ │ │ ├── TestObjectClass.cs │ │ │ └── TestObjectClass.cs.meta │ │ ├── Utility.meta │ │ ├── Utility │ │ │ ├── Log.cs │ │ │ ├── Log.cs.meta │ │ │ ├── ResDownloader.cs │ │ │ ├── ResDownloader.cs.meta │ │ │ ├── Util.cs │ │ │ └── Util.cs.meta │ │ ├── View.meta │ │ └── View │ │ │ ├── AppView.cs │ │ │ ├── AppView.cs.meta │ │ │ ├── PromptView.cs │ │ │ └── PromptView.cs.meta │ ├── XLuaEx.meta │ └── XLuaEx │ │ ├── LuaEnvEx.cs │ │ ├── LuaEnvEx.cs.meta │ │ ├── StaticLuaCallbacksEx.cs │ │ └── StaticLuaCallbacksEx.cs.meta ├── 创建XLua目录 并和 腾讯Assets下的XLua目录建立软连接 └── 创建XLua目录 并和 腾讯Assets下的XLua目录建立软连接.meta └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/README.md -------------------------------------------------------------------------------- /XLua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/.gitignore -------------------------------------------------------------------------------- /XLua/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android/libs.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android/libs/armeabi-v7a.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android/libs/armeabi-v7a/libxlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android/libs/armeabi-v7a/libxlua.so -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android/libs/armeabi-v7a/libxlua.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android/libs/armeabi-v7a/libxlua.so.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android/libs/x86.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android/libs/x86/libxlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android/libs/x86/libxlua.so -------------------------------------------------------------------------------- /XLua/Assets/Plugins/Android/libs/x86/libxlua.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/Android/libs/x86/libxlua.so.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/iOS.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/iOS/libxlua.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/iOS/libxlua.a -------------------------------------------------------------------------------- /XLua/Assets/Plugins/iOS/libxlua.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/iOS/libxlua.a.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/x86.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/x86/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/x86/xlua.dll -------------------------------------------------------------------------------- /XLua/Assets/Plugins/x86/xlua.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/x86/xlua.dll.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/x86_64.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/x86_64/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/x86_64/xlua.dll -------------------------------------------------------------------------------- /XLua/Assets/Plugins/x86_64/xlua.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/x86_64/xlua.dll.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/xlua.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/xlua.bundle.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/xlua.bundle/Contents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/xlua.bundle/Contents.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/xlua.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/xlua.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /XLua/Assets/Plugins/xlua.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/xlua.bundle/Contents/Info.plist.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/xlua.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/xlua.bundle/Contents/MacOS.meta -------------------------------------------------------------------------------- /XLua/Assets/Plugins/xlua.bundle/Contents/MacOS/xlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/xlua.bundle/Contents/MacOS/xlua -------------------------------------------------------------------------------- /XLua/Assets/Plugins/xlua.bundle/Contents/MacOS/xlua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/Plugins/xlua.bundle/Contents/MacOS/xlua.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/CHANGELOG.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/CHANGELOG.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/CHANGELOG.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/Materials.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/Materials/logo.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/Materials/logo.mat -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/Materials/logo.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/Materials/logo.mat.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua_API.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua_API.doc -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua_API.doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua_API.doc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua增加删除第三方lua库.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua增加删除第三方lua库.doc -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua增加删除第三方lua库.doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua增加删除第三方lua库.doc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.doc -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua复杂值类型(struct)gc优化指南.doc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua性能分析工具.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua性能分析工具.doc -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua性能分析工具.doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua性能分析工具.doc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua教程.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua教程.doc -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua教程.doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua教程.doc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua的配置.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua的配置.doc -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/XLua的配置.doc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/XLua的配置.doc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/custom_generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/custom_generate.md -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/custom_generate.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/custom_generate.md.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/faq.md -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/faq.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/faq.md.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/features.md -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/features.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/features.md.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/hotfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/hotfix.md -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/hotfix.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/hotfix.md.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/logo.png -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/logo.png.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/xLua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/xLua.png -------------------------------------------------------------------------------- /XLua/Assets/XLua/Doc/xLua.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Doc/xLua.png.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/01_Helloworld.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/01_Helloworld.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/01_Helloworld/Helloworld.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/02_U3DScripting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/02_U3DScripting.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/02_U3DScripting/LuaBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/02_U3DScripting/LuaBehaviour.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/02_U3DScripting/LuaBehaviour.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/02_U3DScripting/LuaBehaviour.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/02_U3DScripting/LuaTestScript.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/02_U3DScripting/LuaTestScript.lua.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/02_U3DScripting/U3DScripting.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/02_U3DScripting/U3DScripting.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/03_UIEvent.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/03_UIEvent.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/03_UIEvent/ButtonInteraction.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/03_UIEvent/ButtonInteraction.lua.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/03_UIEvent/UI.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/03_UIEvent/UI.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/03_UIEvent/UI.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/03_UIEvent/UI.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/04_LuaObjectOrented.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/04_LuaObjectOrented.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/04_LuaObjectOrented/InvokeLua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/04_LuaObjectOrented/InvokeLua.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/04_LuaObjectOrented/InvokeLua.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/04_LuaObjectOrented/InvokeLua.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/04_LuaObjectOrented/InvokeLua.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/04_LuaObjectOrented/InvokeLua.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/05_NoGc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/05_NoGc.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/05_NoGc/NoGc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/05_NoGc/NoGc.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/05_NoGc/NoGc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/05_NoGc/NoGc.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/05_NoGc/NoGc.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/05_NoGc/NoGc.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/05_NoGc/NoGc.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/05_NoGc/NoGc.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine/Coroutine.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine/Coroutine_Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine/Coroutine_Runner.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine/Coroutine_Runner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine/Coroutine_Runner.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/06_Coroutine/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/06_Coroutine/Resources.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest/AsyncTest.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest/MessageBox.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest/MessageBox.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest/MessageBox.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/07_AsyncTest/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/07_AsyncTest/Resources.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/HotfixTest2.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/StatefullTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/StatefullTest.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/08_Hotfix/StatefullTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/08_Hotfix/StatefullTest.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/09_GenericMethod.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/09_GenericMethod.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/09_GenericMethod/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/09_GenericMethod/Foo.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/09_GenericMethod/Foo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/09_GenericMethod/Foo.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/09_GenericMethod/GenericMethod.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/09_GenericMethod/GenericMethod.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/ExampleGenConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/ExampleGenConfig.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Examples/ExampleGenConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Examples/ExampleGenConfig.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/perf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/perf.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/perf/memory.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/perf/memory.lua.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/perf/memory.lua.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/perf/memory.lua.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/perf/profiler.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/perf/profiler.lua.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/perf/profiler.lua.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/perf/profiler.lua.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/tdr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/tdr.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/tdr/tdr.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/tdr/tdr.lua.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/tdr/tdr.lua.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/tdr/tdr.lua.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/xlua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/xlua.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/xlua/util.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/xlua/util.lua.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Resources/xlua/util.lua.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Resources/xlua/util.lua.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/CodeEmit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/CodeEmit.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/CodeEmit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/CodeEmit.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/CopyByValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/CopyByValue.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/CopyByValue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/CopyByValue.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/DelegateBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/DelegateBridge.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/DelegateBridge.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/DelegateBridge.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Generator.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Generator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Generator.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Hotfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Hotfix.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Hotfix.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Hotfix.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/LinkXmlGen.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/LinkXmlGen.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.tpl.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/LinkXmlGen/LinkXmlGen.tpl.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaClassWrap.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaClassWrap.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaClassWrap.tpl.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaClassWrap.tpl.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaDelegateBridge.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaDelegateBridge.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaDelegateWrap.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaDelegateWrap.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaEnumWrap.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaEnumWrap.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaEnumWrap.tpl.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaEnumWrap.tpl.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaInterfaceBridge.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaInterfaceBridge.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaRegister.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaRegister.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaRegister.tpl.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaRegister.tpl.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaWrapPusher.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaWrapPusher.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/LuaWrapPusher.tpl.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/LuaWrapPusher.tpl.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/PackUnpack.tpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/PackUnpack.tpl.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/PackUnpack.tpl.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/PackUnpack.tpl.txt.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/Template/TemplateCommon.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/Template/TemplateCommon.lua.txt -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/TemplateRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/TemplateRef.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Editor/TemplateRef.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Editor/TemplateRef.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/GenAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/GenAttributes.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/GenAttributes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/GenAttributes.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/GenConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/GenConfig.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/GenConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/GenConfig.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaBase.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaBase.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaDLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaDLL.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaDLL.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaDLL.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaEnv.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaEnv.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaEnv.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaException.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaException.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaFunction.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaFunction.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaFunction.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaTable.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/LuaTable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/LuaTable.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/MethodWarpsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/MethodWarpsCache.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/MethodWarpsCache.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/MethodWarpsCache.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectCasters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectCasters.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectCasters.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectCasters.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectPool.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectPool.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectTranslator.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectTranslator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectTranslator.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectTranslatorPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectTranslatorPool.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/ObjectTranslatorPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/ObjectTranslatorPool.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/StaticLuaCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/StaticLuaCallbacks.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/StaticLuaCallbacks.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/StaticLuaCallbacks.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/TemplateEngine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/TemplateEngine.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/TemplateEngine/TemplateEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/TemplateEngine/TemplateEngine.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/TemplateEngine/TemplateEngine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/TemplateEngine/TemplateEngine.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Utils.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Src/Utils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Src/Utils.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/CSharpCallLua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/CSharpCallLua.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/CSharpCallLua/CSCallLua.unity.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/ByFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/ByFile.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/ByFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/ByFile.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/ByFile.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/ByFile.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/Resources.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByFile/Resources/byfile.lua.txt: -------------------------------------------------------------------------------- 1 | print('hello world') -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByString.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByString.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByString/ByString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByString/ByString.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/ByString/ByString.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/ByString/ByString.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/Loader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/Loader.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LoadLuaScript/Loader/CustomLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LoadLuaScript/Loader/CustomLoader.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LuaCallCSharp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LuaCallCSharp.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.cs -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.cs.meta -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.unity -------------------------------------------------------------------------------- /XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Assets/XLua/Tutorial/LuaCallCSharp/LuaCallCs.unity.meta -------------------------------------------------------------------------------- /XLua/General/Src/XLuaGenerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/Src/XLuaGenerate.cs -------------------------------------------------------------------------------- /XLua/General/Src/XLuaHotfixInject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/Src/XLuaHotfixInject.cs -------------------------------------------------------------------------------- /XLua/General/Src/XLuaTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/Src/XLuaTest.cs -------------------------------------------------------------------------------- /XLua/General/vs2013/XLua.Mini.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/vs2013/XLua.Mini.csproj -------------------------------------------------------------------------------- /XLua/General/vs2013/XLua.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/vs2013/XLua.sln -------------------------------------------------------------------------------- /XLua/General/vs2013/XLuaGenerate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/vs2013/XLuaGenerate.csproj -------------------------------------------------------------------------------- /XLua/General/vs2013/XLuaHotfixInject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/vs2013/XLuaHotfixInject.csproj -------------------------------------------------------------------------------- /XLua/General/vs2013/XLuaTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/vs2013/XLuaTest.csproj -------------------------------------------------------------------------------- /XLua/General/vs2013/XLuaTestGenCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/General/vs2013/XLuaTestGenCode.csproj -------------------------------------------------------------------------------- /XLua/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/LICENSE.TXT -------------------------------------------------------------------------------- /XLua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/README.md -------------------------------------------------------------------------------- /XLua/Test/PrefTest/Resources/luaTest.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/Resources/luaTest.lua.txt -------------------------------------------------------------------------------- /XLua/Test/PrefTest/Resources/luaTest.lua.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/Resources/luaTest.lua.txt.meta -------------------------------------------------------------------------------- /XLua/Test/PrefTest/xLuaPerfTest/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/xLuaPerfTest/Main.unity -------------------------------------------------------------------------------- /XLua/Test/PrefTest/xLuaPerfTest/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/xLuaPerfTest/Main.unity.meta -------------------------------------------------------------------------------- /XLua/Test/PrefTest/xLuaPerfTest/PeformentTestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/xLuaPerfTest/PeformentTestConfig.cs -------------------------------------------------------------------------------- /XLua/Test/PrefTest/xLuaPerfTest/PeformentTestConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/xLuaPerfTest/PeformentTestConfig.cs.meta -------------------------------------------------------------------------------- /XLua/Test/PrefTest/xLuaPerfTest/PerfMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/xLuaPerfTest/PerfMain.cs -------------------------------------------------------------------------------- /XLua/Test/PrefTest/xLuaPerfTest/PerfMain.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/PrefTest/xLuaPerfTest/PerfMain.cs.meta -------------------------------------------------------------------------------- /XLua/Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/README.md -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/D.lua: -------------------------------------------------------------------------------- 1 | strValue = "D.lua" -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/D.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/D.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/csCallLua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/csCallLua.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/csCallLua.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/csCallLua.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/genCode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/genCode.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/genCode.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/genCode.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/ltest.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/ltest.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/ltest/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/ltest/init.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/ltest/init.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/ltest/init.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/ltest/lassert.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/ltest/lassert.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/ltest/lassert.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/ltest/lassert.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/ltest/loutput.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/ltest/loutput.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/ltest/loutput.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/ltest/loutput.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/luaCallCs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/luaCallCs.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/luaCallCs.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/luaCallCs.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/luaCallCsReflect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/luaCallCsReflect.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/luaCallCsReflect.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/luaCallCsReflect.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/luaTdrTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/luaTdrTest.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/luaTdrTest.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/luaTdrTest.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/main.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/main.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/main.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testlua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testlua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testlua/B.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testlua/B.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testlua/B.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testlua/B.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testlua/C.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testlua/C.lua.txt -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testlua/C.lua.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testlua/C.lua.txt.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testlua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testlua/main.lua -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testlua/main.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testlua/main.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testxxx.tdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testxxx.tdr -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testxxx.tdr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testxxx.tdr.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testxxx2.tdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testxxx2.tdr -------------------------------------------------------------------------------- /XLua/Test/UnitTest/StreamingAssets/testxxx2.tdr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/StreamingAssets/testxxx2.tdr.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/CSharpCallLua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/A.lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/A.lua.txt -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/D.lua.txt: -------------------------------------------------------------------------------- 1 | strValue = "D.lua.txt" -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/E.lua: -------------------------------------------------------------------------------- 1 | strFile = "E.lua" -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/E.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/E.lua.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/InFile.lua.txt: -------------------------------------------------------------------------------- 1 | filestring = "b" -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/Resources/empty.lua.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/TCForTestCSCallLua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/CSharpCallLua/TCForTestCSCallLua.cs -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.cs -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/CSharpCallLua/TestCSCallLua.cs.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/LuaCallCS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/LuaCallCS.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/LuaTestCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/LuaTestCommon.cs -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/LuaTestCommon.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/LuaTestCommon.cs.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/LuaTestObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/LuaTestObj.cs -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/LuaTestObj.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/LuaTestObj.cs.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/LuaTestObjReflect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/LuaTestObjReflect.cs -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/LuaTestObjReflect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/LuaTestObjReflect.cs.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/Main.cs -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/Main.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/Main.cs.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/Resources.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/Resources/testxxx.tdr.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/Resources/testxxx.tdr.bytes -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/Resources/testxxx.tdr.bytes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/Resources/testxxx.tdr.bytes.meta -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/Resources/testxxx2.tdr.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/Resources/testxxx2.tdr.bytes -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/main.unity -------------------------------------------------------------------------------- /XLua/Test/UnitTest/xLuaTest/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/Test/UnitTest/xLuaTest/main.unity.meta -------------------------------------------------------------------------------- /XLua/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/CMakeLists.txt -------------------------------------------------------------------------------- /XLua/build/cmake/android.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/cmake/android.toolchain.cmake -------------------------------------------------------------------------------- /XLua/build/cmake/iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/cmake/iOS.cmake -------------------------------------------------------------------------------- /XLua/build/i64lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/i64lib.c -------------------------------------------------------------------------------- /XLua/build/i64lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/i64lib.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/COPYRIGHT -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/HISTORY -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/INSTALL -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/Makefile -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/README -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/contents.html -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/cover.png -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/logo.gif -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/lua.1 -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/lua.css -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/lua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/lua.html -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/luac.1 -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/luac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/luac.html -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/manual.css -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/manual.html -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/doc/readme.html -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/Makefile -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/README -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/all.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/lua.hpp -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/lua.ico -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/lua.pc -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/luavs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/luavs.bat -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/min.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/noparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/noparser.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/etc/strict.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/etc/strict.lua -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/Makefile -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lapi.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lapi.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lauxlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lauxlib.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lbaselib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lcode.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lcode.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ldblib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ldebug.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ldebug.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ldo.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ldo.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ldump.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lfunc.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lfunc.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lgc.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lgc.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/linit.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/liolib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/llex.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/llex.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/llimits.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lmathlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lmem.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lmem.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/loadlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lobject.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lobject.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lopcodes.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lopcodes.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/loslib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lparser.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lparser.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lstate.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lstate.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lstring.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lstring.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lstrlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ltable.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ltable.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ltablib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ltm.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/ltm.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lua.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lua.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/luac.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/luaconf.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lualib.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lundump.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lundump.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lvm.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lvm.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lzio.c -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/lzio.h -------------------------------------------------------------------------------- /XLua/build/lua-5.1.5/src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.1.5/src/print.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/CMakeLists.txt -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/Makefile -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/README -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/cmake/FindLua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/cmake/FindLua.cmake -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/cmake/FindReadline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/cmake/FindReadline.cmake -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/cmake/dist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/cmake/dist.cmake -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/cmake/lua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/cmake/lua.cmake -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/dist.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/dist.info -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/contents.html -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/index.css -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/logo.gif -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/lua.1 -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/lua.css -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/luac.1 -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/manual.css -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/manual.html -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/osi-certified-72x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/osi-certified-72x60.png -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/doc/readme.html -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/etc/lua.ico -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/etc/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/etc/lua.pc -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/etc/lua_lang.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/etc/lua_lang.ico -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/Makefile -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lapi.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lapi.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lauxlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lauxlib.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lbaselib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lbitlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lcode.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lcode.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lcorolib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lctype.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lctype.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ldblib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ldebug.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ldebug.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ldo.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ldo.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ldump.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lfunc.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lfunc.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lgc.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lgc.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/linit.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/liolib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/llex.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/llex.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/llimits.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lmathlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lmem.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lmem.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/loadlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/loadlib_rel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/loadlib_rel.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lobject.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lobject.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lopcodes.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lopcodes.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/loslib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lparser.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lparser.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lprefix.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lstate.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lstate.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lstring.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lstring.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lstrlib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ltable.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ltable.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ltablib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ltm.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/ltm.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lua.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lua.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lua.hpp -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lua.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lua.rc -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/luac.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/luac.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/luac.rc -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/luaconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/luaconf.h.in -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lualib.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lundump.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lundump.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lutf8lib.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lvm.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lvm.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lzio.c -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/lzio.h -------------------------------------------------------------------------------- /XLua/build/lua-5.3.3/src/wmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/lua-5.3.3/src/wmain.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/COPYRIGHT -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/Makefile -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/README -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/bluequad-print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/bluequad-print.css -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/bluequad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/bluequad.css -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/changes.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/contact.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/ext_c_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/ext_c_api.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/ext_ffi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/ext_ffi.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/ext_ffi_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/ext_ffi_api.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/ext_ffi_semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/ext_ffi_semantics.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/ext_ffi_tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/ext_ffi_tutorial.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/ext_jit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/ext_jit.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/ext_profiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/ext_profiler.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/extensions.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/faq.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/img/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/img/contact.png -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/install.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/luajit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/luajit.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/running.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/running.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/doc/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/doc/status.html -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_arm.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_arm.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_arm64.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_arm64.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_mips.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_mips.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_ppc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_ppc.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_proto.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_x64.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_x86.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dasm_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dasm_x86.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/dynasm/dynasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/dynasm/dynasm.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/etc/luajit.1 -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/etc/luajit.pc -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/Makefile -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/Makefile.dep -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/README -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/buildvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/buildvm.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/buildvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/buildvm.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/buildvm_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/buildvm_asm.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/buildvm_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/buildvm_fold.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/buildvm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/buildvm_lib.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/buildvm_libbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/buildvm_libbc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/buildvm_peobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/buildvm_peobj.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/genlibbc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/genlibbc.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/genminilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/genminilua.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/host/minilua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/host/minilua.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/bc.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/bcsave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/bcsave.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/dis_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/dis_arm.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/dis_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/dis_mips.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/dis_mipsel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/dis_mipsel.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/dis_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/dis_ppc.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/dis_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/dis_x64.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/dis_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/dis_x86.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/dump.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/p.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/v.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/jit/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/jit/zone.lua -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lauxlib.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_aux.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_base.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_bit.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_debug.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_ffi.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_init.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_io.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_jit.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_math.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_os.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_package.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_string.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lib_table.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj.supp -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_alloc.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_alloc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_api.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_arch.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_asm.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_asm.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_asm_arm.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_asm_mips.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_asm_ppc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_asm_x86.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_bc.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_bc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_bcdump.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_bcread.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_bcwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_bcwrite.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_buf.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_buf.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_carith.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_carith.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ccall.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ccall.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ccallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ccallback.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ccallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ccallback.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_cconv.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_cconv.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_cdata.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_cdata.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_char.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_char.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_clib.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_clib.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_cparse.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_cparse.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_crecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_crecord.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_crecord.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ctype.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ctype.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_debug.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_debug.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_def.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_dispatch.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_dispatch.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_emit_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_emit_arm.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_emit_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_emit_mips.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_emit_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_emit_ppc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_emit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_emit_x86.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_err.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_err.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_errmsg.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ff.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ffrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ffrecord.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ffrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ffrecord.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_frame.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_func.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_func.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_gc.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_gc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_gdbjit.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_gdbjit.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ir.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ir.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_ircall.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_iropt.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_jit.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_lex.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_lex.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_lib.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_lib.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_load.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_mcode.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_mcode.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_meta.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_meta.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_obj.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_obj.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_opt_dce.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_opt_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_opt_fold.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_opt_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_opt_loop.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_opt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_opt_mem.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_opt_narrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_opt_narrow.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_opt_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_opt_sink.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_opt_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_opt_split.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_parse.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_parse.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_profile.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_profile.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_record.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_record.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_snap.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_snap.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_state.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_state.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_str.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_str.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_strfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_strfmt.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_strfmt.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_strfmt_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_strfmt_num.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_strscan.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_strscan.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_tab.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_tab.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_target.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_target_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_target_arm.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_target_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_target_arm64.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_target_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_target_mips.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_target_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_target_ppc.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_target_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_target_x86.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_trace.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_trace.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_traceerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_traceerr.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_udata.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_udata.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_vm.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_vmevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_vmevent.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_vmevent.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lj_vmmath.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/ljamalg.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lua.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lua.hpp -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/luaconf.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/luajit.c -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/luajit.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/lualib.h -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/msvcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/msvcbuild.bat -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/msvcbuild_mt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/msvcbuild_mt.bat -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/msvcbuild_xlua.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/msvcbuild_xlua.bat -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/ps4build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/ps4build.bat -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/psvitabuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/psvitabuild.bat -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/vm_arm.dasc -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/vm_arm64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/vm_arm64.dasc -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/vm_mips.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/vm_mips.dasc -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/vm_ppc.dasc -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/vm_x64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/vm_x64.dasc -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/vm_x86.dasc -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/xb1build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/xb1build.bat -------------------------------------------------------------------------------- /XLua/build/luajit-2.1.0b2/src/xedkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luajit-2.1.0b2/src/xedkbuild.bat -------------------------------------------------------------------------------- /XLua/build/luasocket/auxiliar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/auxiliar.c -------------------------------------------------------------------------------- /XLua/build/luasocket/auxiliar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/auxiliar.h -------------------------------------------------------------------------------- /XLua/build/luasocket/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/buffer.c -------------------------------------------------------------------------------- /XLua/build/luasocket/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/buffer.h -------------------------------------------------------------------------------- /XLua/build/luasocket/except.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/except.c -------------------------------------------------------------------------------- /XLua/build/luasocket/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/except.h -------------------------------------------------------------------------------- /XLua/build/luasocket/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/inet.c -------------------------------------------------------------------------------- /XLua/build/luasocket/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/inet.h -------------------------------------------------------------------------------- /XLua/build/luasocket/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/io.c -------------------------------------------------------------------------------- /XLua/build/luasocket/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/io.h -------------------------------------------------------------------------------- /XLua/build/luasocket/luasocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/luasocket.c -------------------------------------------------------------------------------- /XLua/build/luasocket/luasocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/luasocket.h -------------------------------------------------------------------------------- /XLua/build/luasocket/luasocket_scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/luasocket_scripts.c -------------------------------------------------------------------------------- /XLua/build/luasocket/luasocket_scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/luasocket_scripts.h -------------------------------------------------------------------------------- /XLua/build/luasocket/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/mime.c -------------------------------------------------------------------------------- /XLua/build/luasocket/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/mime.h -------------------------------------------------------------------------------- /XLua/build/luasocket/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/options.c -------------------------------------------------------------------------------- /XLua/build/luasocket/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/options.h -------------------------------------------------------------------------------- /XLua/build/luasocket/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/select.c -------------------------------------------------------------------------------- /XLua/build/luasocket/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/select.h -------------------------------------------------------------------------------- /XLua/build/luasocket/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/serial.c -------------------------------------------------------------------------------- /XLua/build/luasocket/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/socket.h -------------------------------------------------------------------------------- /XLua/build/luasocket/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/tcp.c -------------------------------------------------------------------------------- /XLua/build/luasocket/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/tcp.h -------------------------------------------------------------------------------- /XLua/build/luasocket/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/timeout.c -------------------------------------------------------------------------------- /XLua/build/luasocket/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/timeout.h -------------------------------------------------------------------------------- /XLua/build/luasocket/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/udp.c -------------------------------------------------------------------------------- /XLua/build/luasocket/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/udp.h -------------------------------------------------------------------------------- /XLua/build/luasocket/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/unix.c -------------------------------------------------------------------------------- /XLua/build/luasocket/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/unix.h -------------------------------------------------------------------------------- /XLua/build/luasocket/usocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/usocket.c -------------------------------------------------------------------------------- /XLua/build/luasocket/usocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/usocket.h -------------------------------------------------------------------------------- /XLua/build/luasocket/wsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/wsocket.c -------------------------------------------------------------------------------- /XLua/build/luasocket/wsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/luasocket/wsocket.h -------------------------------------------------------------------------------- /XLua/build/make_android_lua53.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_android_lua53.sh -------------------------------------------------------------------------------- /XLua/build/make_android_luajit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_android_luajit.sh -------------------------------------------------------------------------------- /XLua/build/make_ios_lua53.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_ios_lua53.sh -------------------------------------------------------------------------------- /XLua/build/make_ios_luajit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_ios_luajit.sh -------------------------------------------------------------------------------- /XLua/build/make_osx_lua53.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_osx_lua53.sh -------------------------------------------------------------------------------- /XLua/build/make_osx_luajit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_osx_luajit.sh -------------------------------------------------------------------------------- /XLua/build/make_win32_lua53.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_win32_lua53.bat -------------------------------------------------------------------------------- /XLua/build/make_win32_luajit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_win32_luajit.bat -------------------------------------------------------------------------------- /XLua/build/make_win64_lua53.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_win64_lua53.bat -------------------------------------------------------------------------------- /XLua/build/make_win64_luajit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/make_win64_luajit.bat -------------------------------------------------------------------------------- /XLua/build/perflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/perflib.c -------------------------------------------------------------------------------- /XLua/build/xlua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XLua/build/xlua.c -------------------------------------------------------------------------------- /XluaFramework/.gitignore: -------------------------------------------------------------------------------- 1 | XLua 2 | -------------------------------------------------------------------------------- /XluaFramework/.vs/XluaFramework/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/.vs/XluaFramework/v14/.suo -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/Android/libs.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/Android/libs/armeabi-v7a.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/Android/libs/x86.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/Android/libs/x86/libxlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/Android/libs/x86/libxlua.so -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/iOS.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/iOS/libxlua.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/iOS/libxlua.a -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/iOS/libxlua.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/iOS/libxlua.a.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/x86.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/x86/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/x86/xlua.dll -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/x86/xlua.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/x86/xlua.dll.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/x86_64.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/x86_64/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/x86_64/xlua.dll -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/x86_64/xlua.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/x86_64/xlua.dll.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/xlua.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/xlua.bundle.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/xlua.bundle/Contents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/xlua.bundle/Contents.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/xlua.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/xlua.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /XluaFramework/Assets/Plugins/xlua.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/Plugins/xlua.bundle/Contents/MacOS.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLua.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Editor.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Editor/CustomSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Editor/CustomSettings.cs -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Editor/Packager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Editor/Packager.cs -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Editor/Packager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Editor/Packager.cs.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Examples.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Examples/Builds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Examples/Builds.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Examples/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Examples/Editor.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Examples/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Examples/Textures.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Lua.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Lua/main.lua -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Lua/main.lua.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Lua/main.lua.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Resources.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scenes.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scenes/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scenes/main.unity -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scenes/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scenes/main.unity.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/ConstDefine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/ConstDefine.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Controller.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Framework.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Framework.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Main.cs -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Main.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Main.cs.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Manager.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Manager.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Network.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Network.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/ObjectPool.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/ObjectPool.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Utility.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Utility/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Utility/Log.cs -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/Utility/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/Utility/Util.cs -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/View.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/Scripts/View/AppView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/Scripts/View/AppView.cs -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/XLuaEx.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/XLuaEx.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/XLuaEx/LuaEnvEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/XLuaEx/LuaEnvEx.cs -------------------------------------------------------------------------------- /XluaFramework/Assets/XLuaFramework/XLuaEx/LuaEnvEx.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/XLuaFramework/XLuaEx/LuaEnvEx.cs.meta -------------------------------------------------------------------------------- /XluaFramework/Assets/创建XLua目录 并和 腾讯Assets下的XLua目录建立软连接: -------------------------------------------------------------------------------- 1 | 此处进行XLUA的软连接 -------------------------------------------------------------------------------- /XluaFramework/Assets/创建XLua目录 并和 腾讯Assets下的XLua目录建立软连接.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/Assets/创建XLua目录 并和 腾讯Assets下的XLua目录建立软连接.meta -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.5.0p3 2 | -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /XluaFramework/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihoukai/XLuaFramework/HEAD/XluaFramework/ProjectSettings/UnityConnectSettings.asset --------------------------------------------------------------------------------