├── LOLSever └── LOLSever │ ├── LOLSever.sln │ ├── LOLSever.v12.suo │ ├── LOLSever │ ├── HandlerCenter.cs │ ├── LOLSever.csproj │ ├── Logic │ │ ├── AbsOnceHandler.cs │ │ ├── HandlerInterface.cs │ │ ├── login │ │ │ └── LoginHandler.cs │ │ └── user │ │ │ └── UserHandler.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── LOLSever.exe │ │ │ ├── LOLSever.pdb │ │ │ ├── LOLSever.vshost.exe │ │ │ ├── LOLSever.vshost.exe.manifest │ │ │ ├── NetFrame.dll │ │ │ ├── NetFrame.pdb │ │ │ ├── Protocol.dll │ │ │ └── Protocol.pdb │ ├── biz │ │ ├── BizFactory.cs │ │ ├── IAccountBiz.cs │ │ ├── IUserBiz.cs │ │ └── impl │ │ │ ├── AccountBiz.cs │ │ │ └── UserBiz.cs │ ├── cache │ │ ├── CacheFactory.cs │ │ ├── IAccountCache.cs │ │ ├── IUserCache.cs │ │ └── impl │ │ │ ├── AccountCache.cs │ │ │ └── UserCache.cs │ ├── dao │ │ └── model │ │ │ ├── AccountModel.cs │ │ │ └── UserModel.cs │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── LOLSever.csproj.FileListAbsolute.txt │ │ │ ├── LOLSever.csprojResolveAssemblyReference.cache │ │ │ ├── LOLSever.exe │ │ │ └── LOLSever.pdb │ └── tool │ │ └── ExecutorPool.cs │ ├── NetFrame │ ├── AbsHandlerCenter.cs │ ├── ByteArray.cs │ ├── CodingDelegate.cs │ ├── NetFrame.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SerializeUtil.cs │ ├── SeverStart.cs │ ├── UserToken.cs │ ├── UserTokenPool.cs │ ├── auto │ │ ├── LengthEncoding.cs │ │ ├── MessageEncoding.cs │ │ └── SocketModel.cs │ ├── bin │ │ └── Debug │ │ │ ├── NetFrame.dll │ │ │ └── NetFrame.pdb │ └── obj │ │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── NetFrame.csproj.FileListAbsolute.txt │ │ ├── NetFrame.csprojResolveAssemblyReference.cache │ │ ├── NetFrame.dll │ │ └── NetFrame.pdb │ └── Protocol │ ├── LoginProtocol.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Protocol.cs │ ├── Protocol.csproj │ ├── UserProtocol.cs │ ├── bin │ └── Debug │ │ ├── Protocol.dll │ │ └── Protocol.pdb │ ├── dto │ ├── AccountInfoDTO.cs │ └── UserDTO.cs │ └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Protocol.csproj.FileListAbsolute.txt │ ├── Protocol.csprojResolveAssemblyReference.cache │ ├── Protocol.dll │ └── Protocol.pdb └── LOLTest └── LOLTest ├── Assembly-CSharp.csproj ├── Assets ├── Plugins.meta ├── Plugins │ ├── Protocol.dll │ └── Protocol.dll.meta ├── Scenes.meta ├── Scenes │ ├── Login.unity │ ├── Login.unity.meta │ ├── Main.unity │ └── Main.unity.meta ├── Scripts.meta ├── Scripts │ ├── ByteArray.cs │ ├── ByteArray.cs.meta │ ├── EX.cs │ ├── EX.cs.meta │ ├── GameData.cs │ ├── GameData.cs.meta │ ├── IHandler.cs │ ├── IHandler.cs.meta │ ├── Login.meta │ ├── Login │ │ ├── LoginHandler.cs │ │ ├── LoginHandler.cs.meta │ │ ├── LoginScreen.cs │ │ └── LoginScreen.cs.meta │ ├── Main.meta │ ├── Main │ │ ├── MainScene.cs │ │ └── MainScene.cs.meta │ ├── NetIO.cs │ ├── NetIO.cs.meta │ ├── NetMessageUtil.cs │ ├── NetMessageUtil.cs.meta │ ├── SerializeUtil.cs │ ├── SerializeUtil.cs.meta │ ├── SocketModel.cs │ ├── SocketModel.cs.meta │ ├── WarningManager.cs │ ├── WarningManager.cs.meta │ ├── WarningModel.cs │ ├── WarningModel.cs.meta │ ├── WarningWindow.cs │ └── WarningWindow.cs.meta ├── Textures.meta └── Textures │ ├── Login.meta │ ├── Login │ ├── background_fwqgx_1.png │ ├── background_fwqgx_1.png.meta │ ├── button_gfwz_00.png │ ├── button_gfwz_00.png.meta │ ├── button_gfwz_01.png │ ├── button_gfwz_01.png.meta │ ├── button_gfwz_02.png │ ├── button_gfwz_02.png.meta │ ├── button_gfwz_03.png │ ├── button_gfwz_03.png.meta │ ├── button_jryx_00.png │ ├── button_jryx_00.png.meta │ ├── button_jryx_01.png │ ├── button_jryx_01.png.meta │ ├── button_jryx_02.png │ ├── button_jryx_02.png.meta │ ├── button_jryx_03.png │ ├── button_jryx_03.png.meta │ ├── button_zczh_00.png │ ├── button_zczh_00.png.meta │ ├── button_zczh_01.png │ ├── button_zczh_01.png.meta │ ├── button_zczh_02.png │ ├── button_zczh_02.png.meta │ ├── button_zczh_03.png │ ├── button_zczh_03.png.meta │ ├── logo.png │ ├── logo.png.meta │ ├── logoBg.png │ ├── logoBg.png.meta │ ├── page.jpg │ └── page.jpg.meta │ ├── headIcon.meta │ └── headIcon │ ├── 1.jpg │ ├── 1.jpg.meta │ ├── 2.jpg │ ├── 2.jpg.meta │ ├── 3.jpg │ ├── 3.jpg.meta │ ├── 4.jpg │ ├── 4.jpg.meta │ ├── 5.jpg │ ├── 5.jpg.meta │ ├── 6.jpg │ ├── 6.jpg.meta │ ├── 7.jpg │ ├── 7.jpg.meta │ ├── 8.jpg │ ├── 8.jpg.meta │ ├── 9.jpg │ └── 9.jpg.meta ├── LOLTest.sln ├── LOLTest.v12.suo ├── Library ├── AnnotationManager ├── AssetImportState ├── AssetServerCacheV3 ├── AssetVersioning.db ├── BuildPlayer.prefs ├── BuildSettings.asset ├── CurrentLayout.dwlt ├── EditorUserBuildSettings.asset ├── EditorUserSettings.asset ├── InspectorExpandedItems.asset ├── LastSceneManagerSetup.txt ├── LibraryFormatVersion.txt ├── MonoManager.asset ├── ProjectSettings.asset ├── ScriptAssemblies │ ├── Assembly-CSharp.dll │ ├── Assembly-CSharp.dll.mdb │ └── BuiltinAssemblies.stamp ├── ScriptMapper ├── ShaderCache.db ├── ShaderCache │ ├── 0 │ │ └── 0ae1d6c1044bc1ebe972575570aaa580.bin │ ├── 1 │ │ └── 181d75a3462f1173fc02ad4db885cbbd.bin │ ├── 2 │ │ └── 270c4948b846631806c8dc7a13c0b98d.bin │ ├── 5 │ │ └── 55e468495a72439cb8ad18e837901fa5.bin │ ├── 7 │ │ ├── 7944cfcb03ee15767d3a047b6eda3e90.bin │ │ └── 7e926a161b6795a2627260df928e00f3.bin │ ├── 8 │ │ ├── 898842916534ddf7c42280787bfd45d8.bin │ │ └── 8a5125e84789885d22cbe8c5850c9869.bin │ ├── 9 │ │ └── 976ea39a8327a247e355958ae498a1cc.bin │ ├── a │ │ ├── a28575da30eecf6ca8eb9fe993f1b265.bin │ │ └── acc8b5872b8181b431cff27ea258bbdb.bin │ ├── b │ │ └── bd226a2e8ca352015a7a03c047b0a278.bin │ └── c │ │ ├── c002bc5beab0809881510db7cfe1f20e.bin │ │ └── c184128e93f367b1dd7eedb2811a7c81.bin ├── assetDatabase3 ├── expandedItems ├── metadata │ ├── 39 │ │ ├── 39d9fa4f38af2af4ea06eadea521e5f1 │ │ └── 39d9fa4f38af2af4ea06eadea521e5f1.info │ ├── 43 │ │ ├── 43d7813a09e016d4e8be94f62575e42f │ │ └── 43d7813a09e016d4e8be94f62575e42f.info │ ├── 47 │ │ ├── 47cd90f18cbebfb48bb64f6df1a9bd60 │ │ └── 47cd90f18cbebfb48bb64f6df1a9bd60.info │ ├── 55 │ │ ├── 5589561aee655cf48b7b1897d53af370 │ │ └── 5589561aee655cf48b7b1897d53af370.info │ ├── 56 │ │ ├── 569c25230ae101840b1cf77156214103 │ │ └── 569c25230ae101840b1cf77156214103.info │ ├── 59 │ │ ├── 59ff1c96c9e3daf4d9cd0cff6a0e28ba │ │ └── 59ff1c96c9e3daf4d9cd0cff6a0e28ba.info │ ├── 68 │ │ ├── 680a72edbd68357449b554d0ac65ff03 │ │ └── 680a72edbd68357449b554d0ac65ff03.info │ ├── 72 │ │ ├── 7255f8c38be5cd746a1e2d49e976b49b │ │ ├── 7255f8c38be5cd746a1e2d49e976b49b.info │ │ ├── 72b20402bb70b994db26ca382951ecb9 │ │ └── 72b20402bb70b994db26ca382951ecb9.info │ ├── 73 │ │ ├── 739bbd9f364b4268874f9fd86ab3beef │ │ └── 739bbd9f364b4268874f9fd86ab3beef.info │ ├── 78 │ │ ├── 7833911e4d4421f4b98bed8259abbc74 │ │ └── 7833911e4d4421f4b98bed8259abbc74.info │ ├── 80 │ │ ├── 80a3616ca19596e4da0f10f14d241e9f │ │ └── 80a3616ca19596e4da0f10f14d241e9f.info │ ├── 85 │ │ ├── 852e56802eb941638acbb491814497b0 │ │ └── 852e56802eb941638acbb491814497b0.info │ ├── 87 │ │ ├── 870353891bb340e2b2a9c8707e7419ba │ │ └── 870353891bb340e2b2a9c8707e7419ba.info │ ├── 94 │ │ ├── 947c75ff94416094fbc114de01470d7d │ │ └── 947c75ff94416094fbc114de01470d7d.info │ ├── 95 │ │ ├── 952b213300c6caf4aa32f305bc01e72e │ │ └── 952b213300c6caf4aa32f305bc01e72e.info │ ├── 97 │ │ ├── 97decbdab0634cdd991f8d23ddf0dead │ │ └── 97decbdab0634cdd991f8d23ddf0dead.info │ ├── 00 │ │ ├── 00000000000000001000000000000000 │ │ ├── 00000000000000001000000000000000.info │ │ ├── 00000000000000002000000000000000 │ │ ├── 00000000000000002000000000000000.info │ │ ├── 00000000000000003000000000000000 │ │ ├── 00000000000000003000000000000000.info │ │ ├── 00000000000000004000000000000000 │ │ ├── 00000000000000004000000000000000.info │ │ ├── 00000000000000004100000000000000 │ │ ├── 00000000000000004100000000000000.info │ │ ├── 00000000000000005000000000000000 │ │ ├── 00000000000000005000000000000000.info │ │ ├── 00000000000000005100000000000000 │ │ ├── 00000000000000005100000000000000.info │ │ ├── 00000000000000006000000000000000 │ │ ├── 00000000000000006000000000000000.info │ │ ├── 00000000000000006100000000000000 │ │ ├── 00000000000000006100000000000000.info │ │ ├── 00000000000000007000000000000000 │ │ ├── 00000000000000007000000000000000.info │ │ ├── 00000000000000007100000000000000 │ │ ├── 00000000000000007100000000000000.info │ │ ├── 00000000000000008000000000000000 │ │ ├── 00000000000000008000000000000000.info │ │ ├── 00000000000000008100000000000000 │ │ ├── 00000000000000008100000000000000.info │ │ ├── 00000000000000009000000000000000 │ │ ├── 00000000000000009000000000000000.info │ │ ├── 0000000000000000a000000000000000 │ │ ├── 0000000000000000a000000000000000.info │ │ ├── 0000000000000000a100000000000000 │ │ ├── 0000000000000000a100000000000000.info │ │ ├── 0000000000000000b000000000000000 │ │ ├── 0000000000000000b000000000000000.info │ │ ├── 0000000000000000c000000000000000 │ │ └── 0000000000000000c000000000000000.info │ ├── 03 │ │ ├── 03ca10580239bd2418a6a22dfb20f232 │ │ └── 03ca10580239bd2418a6a22dfb20f232.info │ ├── 04 │ │ ├── 040d2b47ba050294e827b429deec4b0e │ │ └── 040d2b47ba050294e827b429deec4b0e.info │ ├── 0a │ │ ├── 0a473bfbe780fb0468691dd4220ead90 │ │ └── 0a473bfbe780fb0468691dd4220ead90.info │ ├── 0c │ │ ├── 0cac7e7a11aa054469fc0f30f8eb3d26 │ │ └── 0cac7e7a11aa054469fc0f30f8eb3d26.info │ ├── 0d │ │ ├── 0daf06dc30274fc4493b5fd6bc786c29 │ │ ├── 0daf06dc30274fc4493b5fd6bc786c29.info │ │ ├── 0dca6b6e4ab5cad4e9dcb25d9df8cf04 │ │ └── 0dca6b6e4ab5cad4e9dcb25d9df8cf04.info │ ├── 1c │ │ ├── 1cb791a18afc4f34d84c6aea7fda8bdc │ │ └── 1cb791a18afc4f34d84c6aea7fda8bdc.info │ ├── 2c │ │ ├── 2ccd8638c3750a64281a50bc3756bdaa │ │ └── 2ccd8638c3750a64281a50bc3756bdaa.info │ ├── 3c │ │ ├── 3c0ad459c1534645b5d603b7cc258f97 │ │ └── 3c0ad459c1534645b5d603b7cc258f97.info │ ├── 5f │ │ ├── 5f32cd94baa94578a686d4b9d6b660f7 │ │ └── 5f32cd94baa94578a686d4b9d6b660f7.info │ ├── 6a │ │ ├── 6af70f5f661357e4d85f6699188b644b │ │ └── 6af70f5f661357e4d85f6699188b644b.info │ ├── 6b │ │ ├── 6bc3d6e98584f1d43ba0f0a15a744a37 │ │ └── 6bc3d6e98584f1d43ba0f0a15a744a37.info │ ├── 6d │ │ ├── 6d9d1058923a91940b5ffdf8f0627763 │ │ └── 6d9d1058923a91940b5ffdf8f0627763.info │ ├── 7b │ │ ├── 7b4574849a10c2d40bfea1703f1943cb │ │ └── 7b4574849a10c2d40bfea1703f1943cb.info │ ├── 7c │ │ ├── 7cbab2be89b54486bbd23a6fe637d30e │ │ └── 7cbab2be89b54486bbd23a6fe637d30e.info │ ├── 8b │ │ ├── 8b092e4e88e1dfe48bfdf2801de1db9c │ │ └── 8b092e4e88e1dfe48bfdf2801de1db9c.info │ ├── 8e │ │ ├── 8e0cd8ed44d4412cbe0642067abc9e44 │ │ └── 8e0cd8ed44d4412cbe0642067abc9e44.info │ ├── a3 │ │ ├── a38fd6e6629d9ac4c934cc2a3bca67c1 │ │ └── a38fd6e6629d9ac4c934cc2a3bca67c1.info │ ├── ad │ │ ├── ad0edf9a70b3ac741a360637e30033ab │ │ ├── ad0edf9a70b3ac741a360637e30033ab.info │ │ ├── adebbd281f1a4ef3a30be7f21937e02f │ │ └── adebbd281f1a4ef3a30be7f21937e02f.info │ ├── b5 │ │ ├── b542818a732a6ba43b41d1d166519fdf │ │ └── b542818a732a6ba43b41d1d166519fdf.info │ ├── b6 │ │ ├── b6f35c7f9d0ce9b4fa8c0925847247a4 │ │ └── b6f35c7f9d0ce9b4fa8c0925847247a4.info │ ├── b7 │ │ ├── b7db641474789224f84d2cee193d6834 │ │ └── b7db641474789224f84d2cee193d6834.info │ ├── bd │ │ ├── bd69bd070e0f4a84abc53a837c329196 │ │ └── bd69bd070e0f4a84abc53a837c329196.info │ ├── c2 │ │ ├── c21eea24ee48b36479a7d23c522c5fca │ │ └── c21eea24ee48b36479a7d23c522c5fca.info │ ├── c3 │ │ ├── c3184e5ca79cba74e8efa2f3ea467486 │ │ ├── c3184e5ca79cba74e8efa2f3ea467486.info │ │ ├── c3c7337ece6b948489e1a3f730cbfa19 │ │ └── c3c7337ece6b948489e1a3f730cbfa19.info │ ├── c6 │ │ ├── c6b98a639ba54854ca65bd66376cab57 │ │ └── c6b98a639ba54854ca65bd66376cab57.info │ ├── c9 │ │ ├── c997aec81f858e84b9233472d181e041 │ │ ├── c997aec81f858e84b9233472d181e041.info │ │ ├── c9cc20e9f58b57a43bab73f4167b0fb2 │ │ └── c9cc20e9f58b57a43bab73f4167b0fb2.info │ ├── cb │ │ ├── cb45b9e4fcca10c4aade533e2ae0b6b5 │ │ └── cb45b9e4fcca10c4aade533e2ae0b6b5.info │ ├── d4 │ │ ├── d4914e11a81aa9e4588166d08d79e133 │ │ └── d4914e11a81aa9e4588166d08d79e133.info │ ├── d6 │ │ ├── d61fe425a8479204fa462c4a5bf3dd04 │ │ ├── d61fe425a8479204fa462c4a5bf3dd04.info │ │ ├── d6bb1c36c2441674ab91743964688cea │ │ └── d6bb1c36c2441674ab91743964688cea.info │ ├── dd │ │ ├── dd814342b2235b248b39c0d1b11ae2e8 │ │ └── dd814342b2235b248b39c0d1b11ae2e8.info │ ├── e4 │ │ ├── e4e94dd34ed6a8b47a4d2bbb16c2c195 │ │ └── e4e94dd34ed6a8b47a4d2bbb16c2c195.info │ ├── e5 │ │ ├── e5e409b378e3cac469562e76635d9f46 │ │ └── e5e409b378e3cac469562e76635d9f46.info │ ├── e7 │ │ ├── e7a11388154d41d4f8ab0448498fc6c0 │ │ └── e7a11388154d41d4f8ab0448498fc6c0.info │ ├── e8 │ │ ├── e8297c9155feb254d9851d9aa4c7c742 │ │ └── e8297c9155feb254d9851d9aa4c7c742.info │ ├── e9 │ │ ├── e9436e2200151354b9b3e26bf84c094f │ │ └── e9436e2200151354b9b3e26bf84c094f.info │ ├── eb │ │ ├── eb19e1a68d0c5d242bda2023ca20046e │ │ └── eb19e1a68d0c5d242bda2023ca20046e.info │ ├── ec │ │ ├── ec411871d98f50d4a938484feed52866 │ │ └── ec411871d98f50d4a938484feed52866.info │ ├── f5 │ │ ├── f5f67c52d1564df4a8936ccd202a3bd8 │ │ └── f5f67c52d1564df4a8936ccd202a3bd8.info │ └── f9 │ │ ├── f9a8b92fbc3432d449187ece725130d8 │ │ └── f9a8b92fbc3432d449187ece725130d8.info └── shadercompiler-UnityShaderCompiler.exe0.log ├── 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 ├── UnityAdsSettings.asset └── UnityConnectSettings.asset └── obj └── Debug └── DesignTimeResolveAssemblyReferencesInput.cache /LOLSever/LOLSever/LOLSever.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever.sln -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever.v12.suo -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/HandlerCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/HandlerCenter.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/LOLSever.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/LOLSever.csproj -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/Logic/AbsOnceHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/Logic/AbsOnceHandler.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/Logic/HandlerInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/Logic/HandlerInterface.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/Logic/login/LoginHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/Logic/login/LoginHandler.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/Logic/user/UserHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/Logic/user/UserHandler.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/Program.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.exe -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.pdb -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.vshost.exe -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/LOLSever.vshost.exe.manifest -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/NetFrame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/NetFrame.dll -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/NetFrame.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/NetFrame.pdb -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/Protocol.dll -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/bin/Debug/Protocol.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/bin/Debug/Protocol.pdb -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/biz/BizFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/biz/BizFactory.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/biz/IAccountBiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/biz/IAccountBiz.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/biz/IUserBiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/biz/IUserBiz.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/biz/impl/AccountBiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/biz/impl/AccountBiz.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/biz/impl/UserBiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/biz/impl/UserBiz.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/cache/CacheFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/cache/CacheFactory.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/cache/IAccountCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/cache/IAccountCache.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/cache/IUserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/cache/IUserCache.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/cache/impl/AccountCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/cache/impl/AccountCache.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/cache/impl/UserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/cache/impl/UserCache.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/dao/model/AccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/dao/model/AccountModel.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/dao/model/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/dao/model/UserModel.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.exe -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/obj/Debug/LOLSever.pdb -------------------------------------------------------------------------------- /LOLSever/LOLSever/LOLSever/tool/ExecutorPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/LOLSever/tool/ExecutorPool.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/AbsHandlerCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/AbsHandlerCenter.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/ByteArray.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/CodingDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/CodingDelegate.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/NetFrame.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/NetFrame.csproj -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/SerializeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/SerializeUtil.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/SeverStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/SeverStart.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/UserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/UserToken.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/UserTokenPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/UserTokenPool.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/auto/LengthEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/auto/LengthEncoding.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/auto/MessageEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/auto/MessageEncoding.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/auto/SocketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/auto/SocketModel.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/bin/Debug/NetFrame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/bin/Debug/NetFrame.dll -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/bin/Debug/NetFrame.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/bin/Debug/NetFrame.pdb -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.dll -------------------------------------------------------------------------------- /LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/NetFrame/obj/Debug/NetFrame.pdb -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/LoginProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/LoginProtocol.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/Protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/Protocol.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/Protocol.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/Protocol.csproj -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/UserProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/UserProtocol.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/bin/Debug/Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/bin/Debug/Protocol.dll -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/bin/Debug/Protocol.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/bin/Debug/Protocol.pdb -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/dto/AccountInfoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/dto/AccountInfoDTO.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/dto/UserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/dto/UserDTO.cs -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/obj/Debug/Protocol.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/obj/Debug/Protocol.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/obj/Debug/Protocol.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/obj/Debug/Protocol.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/obj/Debug/Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/obj/Debug/Protocol.dll -------------------------------------------------------------------------------- /LOLSever/LOLSever/Protocol/obj/Debug/Protocol.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLSever/LOLSever/Protocol/obj/Debug/Protocol.pdb -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Plugins.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Plugins/Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Plugins/Protocol.dll -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Plugins/Protocol.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Plugins/Protocol.dll.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scenes.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scenes/Login.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scenes/Login.unity -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scenes/Login.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scenes/Login.unity.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scenes/Main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scenes/Main.unity -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scenes/Main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scenes/Main.unity.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/ByteArray.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/ByteArray.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/ByteArray.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/EX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/EX.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/EX.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/EX.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/GameData.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/GameData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/GameData.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/IHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/IHandler.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/IHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/IHandler.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Login.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Login.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Login/LoginHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Login/LoginHandler.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Login/LoginHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Login/LoginHandler.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Login/LoginScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Login/LoginScreen.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Login/LoginScreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Login/LoginScreen.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Main.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Main/MainScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Main/MainScene.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/Main/MainScene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/Main/MainScene.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/NetIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/NetIO.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/NetIO.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/NetIO.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/NetMessageUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/NetMessageUtil.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/NetMessageUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/NetMessageUtil.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/SerializeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/SerializeUtil.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/SerializeUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/SerializeUtil.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/SocketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/SocketModel.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/SocketModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/SocketModel.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/WarningManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/WarningManager.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/WarningManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/WarningManager.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/WarningModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/WarningModel.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/WarningModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/WarningModel.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/WarningWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/WarningWindow.cs -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Scripts/WarningWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Scripts/WarningWindow.cs.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/background_fwqgx_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/background_fwqgx_1.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/background_fwqgx_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/background_fwqgx_1.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_00.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_00.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_00.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_01.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_01.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_02.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_02.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_03.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_03.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_gfwz_03.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_00.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_00.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_00.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_01.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_01.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_02.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_02.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_03.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_jryx_03.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_jryx_03.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_00.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_00.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_00.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_01.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_01.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_02.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_02.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_03.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/button_zczh_03.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/button_zczh_03.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/logo.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/logo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/logo.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/logoBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/logoBg.png -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/logoBg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/logoBg.png.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/page.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/Login/page.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/Login/page.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/1.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/1.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/1.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/2.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/2.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/2.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/3.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/3.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/3.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/4.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/4.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/4.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/5.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/5.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/5.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/6.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/6.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/6.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/7.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/7.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/7.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/8.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/8.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/8.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/9.jpg -------------------------------------------------------------------------------- /LOLTest/LOLTest/Assets/Textures/headIcon/9.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Assets/Textures/headIcon/9.jpg.meta -------------------------------------------------------------------------------- /LOLTest/LOLTest/LOLTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/LOLTest.sln -------------------------------------------------------------------------------- /LOLTest/LOLTest/LOLTest.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/LOLTest.v12.suo -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/AnnotationManager -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/AssetImportState: -------------------------------------------------------------------------------- 1 | 5;0;6;-1 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/AssetServerCacheV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/AssetServerCacheV3 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/AssetVersioning.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/AssetVersioning.db -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/BuildSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/CurrentLayout.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/CurrentLayout.dwlt -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/EditorUserSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/LastSceneManagerSetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/LastSceneManagerSetup.txt -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/LibraryFormatVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/LibraryFormatVersion.txt -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/MonoManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ProjectSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ScriptAssemblies/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ScriptAssemblies/Assembly-CSharp.dll -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ScriptAssemblies/BuiltinAssemblies.stamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ScriptAssemblies/BuiltinAssemblies.stamp -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ScriptMapper -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache.db -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/0/0ae1d6c1044bc1ebe972575570aaa580.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/0/0ae1d6c1044bc1ebe972575570aaa580.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/1/181d75a3462f1173fc02ad4db885cbbd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/1/181d75a3462f1173fc02ad4db885cbbd.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/2/270c4948b846631806c8dc7a13c0b98d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/2/270c4948b846631806c8dc7a13c0b98d.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/5/55e468495a72439cb8ad18e837901fa5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/5/55e468495a72439cb8ad18e837901fa5.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/7/7944cfcb03ee15767d3a047b6eda3e90.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/7/7944cfcb03ee15767d3a047b6eda3e90.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/7/7e926a161b6795a2627260df928e00f3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/7/7e926a161b6795a2627260df928e00f3.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/8/898842916534ddf7c42280787bfd45d8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/8/898842916534ddf7c42280787bfd45d8.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/8/8a5125e84789885d22cbe8c5850c9869.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/8/8a5125e84789885d22cbe8c5850c9869.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/9/976ea39a8327a247e355958ae498a1cc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/9/976ea39a8327a247e355958ae498a1cc.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/a/a28575da30eecf6ca8eb9fe993f1b265.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/a/a28575da30eecf6ca8eb9fe993f1b265.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/a/acc8b5872b8181b431cff27ea258bbdb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/a/acc8b5872b8181b431cff27ea258bbdb.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/b/bd226a2e8ca352015a7a03c047b0a278.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/b/bd226a2e8ca352015a7a03c047b0a278.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/c/c002bc5beab0809881510db7cfe1f20e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/c/c002bc5beab0809881510db7cfe1f20e.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/ShaderCache/c/c184128e93f367b1dd7eedb2811a7c81.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/ShaderCache/c/c184128e93f367b1dd7eedb2811a7c81.bin -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/assetDatabase3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/assetDatabase3 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/expandedItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/expandedItems -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000001000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000001000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000001000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000001000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000002000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000002000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000002000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000002000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000003000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000003000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000003000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000003000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000004000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000004000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000004000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000004000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000004100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000004100000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000004100000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000004100000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000005000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000005000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000005000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000005000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000005100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000005100000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000005100000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000005100000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000006000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000006000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000006000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000006000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000006100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000006100000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000006100000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000006100000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000007000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000007000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000007000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000007000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000007100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000007100000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000007100000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000007100000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000008000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000008000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000008000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000008000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000008100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000008100000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000008100000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000008100000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000009000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000009000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/00000000000000009000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/00000000000000009000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000a000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000a000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000a000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000a000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000a100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000a100000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000a100000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000a100000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000b000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000b000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000b000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000b000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000c000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000c000000000000000 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/00/0000000000000000c000000000000000.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/00/0000000000000000c000000000000000.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/03/03ca10580239bd2418a6a22dfb20f232: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/03/03ca10580239bd2418a6a22dfb20f232 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/03/03ca10580239bd2418a6a22dfb20f232.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/03/03ca10580239bd2418a6a22dfb20f232.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/04/040d2b47ba050294e827b429deec4b0e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/04/040d2b47ba050294e827b429deec4b0e -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/04/040d2b47ba050294e827b429deec4b0e.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/04/040d2b47ba050294e827b429deec4b0e.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0a/0a473bfbe780fb0468691dd4220ead90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0a/0a473bfbe780fb0468691dd4220ead90 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0a/0a473bfbe780fb0468691dd4220ead90.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0a/0a473bfbe780fb0468691dd4220ead90.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0c/0cac7e7a11aa054469fc0f30f8eb3d26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0c/0cac7e7a11aa054469fc0f30f8eb3d26 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0c/0cac7e7a11aa054469fc0f30f8eb3d26.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0c/0cac7e7a11aa054469fc0f30f8eb3d26.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0d/0daf06dc30274fc4493b5fd6bc786c29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0d/0daf06dc30274fc4493b5fd6bc786c29 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0d/0daf06dc30274fc4493b5fd6bc786c29.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0d/0daf06dc30274fc4493b5fd6bc786c29.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0d/0dca6b6e4ab5cad4e9dcb25d9df8cf04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0d/0dca6b6e4ab5cad4e9dcb25d9df8cf04 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/0d/0dca6b6e4ab5cad4e9dcb25d9df8cf04.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/0d/0dca6b6e4ab5cad4e9dcb25d9df8cf04.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/1c/1cb791a18afc4f34d84c6aea7fda8bdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/1c/1cb791a18afc4f34d84c6aea7fda8bdc -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/1c/1cb791a18afc4f34d84c6aea7fda8bdc.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/1c/1cb791a18afc4f34d84c6aea7fda8bdc.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/2c/2ccd8638c3750a64281a50bc3756bdaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/2c/2ccd8638c3750a64281a50bc3756bdaa -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/2c/2ccd8638c3750a64281a50bc3756bdaa.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/2c/2ccd8638c3750a64281a50bc3756bdaa.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/39/39d9fa4f38af2af4ea06eadea521e5f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/39/39d9fa4f38af2af4ea06eadea521e5f1 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/39/39d9fa4f38af2af4ea06eadea521e5f1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/39/39d9fa4f38af2af4ea06eadea521e5f1.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/3c/3c0ad459c1534645b5d603b7cc258f97: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/3c/3c0ad459c1534645b5d603b7cc258f97 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/3c/3c0ad459c1534645b5d603b7cc258f97.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/3c/3c0ad459c1534645b5d603b7cc258f97.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/43/43d7813a09e016d4e8be94f62575e42f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/43/43d7813a09e016d4e8be94f62575e42f -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/43/43d7813a09e016d4e8be94f62575e42f.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/43/43d7813a09e016d4e8be94f62575e42f.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/47/47cd90f18cbebfb48bb64f6df1a9bd60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/47/47cd90f18cbebfb48bb64f6df1a9bd60 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/47/47cd90f18cbebfb48bb64f6df1a9bd60.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/47/47cd90f18cbebfb48bb64f6df1a9bd60.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/55/5589561aee655cf48b7b1897d53af370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/55/5589561aee655cf48b7b1897d53af370 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/55/5589561aee655cf48b7b1897d53af370.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/55/5589561aee655cf48b7b1897d53af370.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/56/569c25230ae101840b1cf77156214103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/56/569c25230ae101840b1cf77156214103 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/56/569c25230ae101840b1cf77156214103.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/56/569c25230ae101840b1cf77156214103.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/59/59ff1c96c9e3daf4d9cd0cff6a0e28ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/59/59ff1c96c9e3daf4d9cd0cff6a0e28ba -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/59/59ff1c96c9e3daf4d9cd0cff6a0e28ba.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/59/59ff1c96c9e3daf4d9cd0cff6a0e28ba.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/68/680a72edbd68357449b554d0ac65ff03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/68/680a72edbd68357449b554d0ac65ff03 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/68/680a72edbd68357449b554d0ac65ff03.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/68/680a72edbd68357449b554d0ac65ff03.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/6a/6af70f5f661357e4d85f6699188b644b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/6a/6af70f5f661357e4d85f6699188b644b -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/6a/6af70f5f661357e4d85f6699188b644b.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/6a/6af70f5f661357e4d85f6699188b644b.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/6b/6bc3d6e98584f1d43ba0f0a15a744a37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/6b/6bc3d6e98584f1d43ba0f0a15a744a37 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/6b/6bc3d6e98584f1d43ba0f0a15a744a37.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/6b/6bc3d6e98584f1d43ba0f0a15a744a37.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/6d/6d9d1058923a91940b5ffdf8f0627763: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/6d/6d9d1058923a91940b5ffdf8f0627763 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/6d/6d9d1058923a91940b5ffdf8f0627763.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/6d/6d9d1058923a91940b5ffdf8f0627763.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/72/7255f8c38be5cd746a1e2d49e976b49b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/72/7255f8c38be5cd746a1e2d49e976b49b -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/72/7255f8c38be5cd746a1e2d49e976b49b.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/72/7255f8c38be5cd746a1e2d49e976b49b.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/72/72b20402bb70b994db26ca382951ecb9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/72/72b20402bb70b994db26ca382951ecb9 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/72/72b20402bb70b994db26ca382951ecb9.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/72/72b20402bb70b994db26ca382951ecb9.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/73/739bbd9f364b4268874f9fd86ab3beef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/73/739bbd9f364b4268874f9fd86ab3beef -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/73/739bbd9f364b4268874f9fd86ab3beef.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/73/739bbd9f364b4268874f9fd86ab3beef.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/78/7833911e4d4421f4b98bed8259abbc74: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/78/7833911e4d4421f4b98bed8259abbc74 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/78/7833911e4d4421f4b98bed8259abbc74.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/78/7833911e4d4421f4b98bed8259abbc74.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/7b/7b4574849a10c2d40bfea1703f1943cb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/7b/7b4574849a10c2d40bfea1703f1943cb -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/7b/7b4574849a10c2d40bfea1703f1943cb.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/7b/7b4574849a10c2d40bfea1703f1943cb.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/7c/7cbab2be89b54486bbd23a6fe637d30e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/7c/7cbab2be89b54486bbd23a6fe637d30e -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/7c/7cbab2be89b54486bbd23a6fe637d30e.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/7c/7cbab2be89b54486bbd23a6fe637d30e.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/85/852e56802eb941638acbb491814497b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/85/852e56802eb941638acbb491814497b0 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/85/852e56802eb941638acbb491814497b0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/85/852e56802eb941638acbb491814497b0.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/8b/8b092e4e88e1dfe48bfdf2801de1db9c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/8b/8b092e4e88e1dfe48bfdf2801de1db9c -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/8b/8b092e4e88e1dfe48bfdf2801de1db9c.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/8b/8b092e4e88e1dfe48bfdf2801de1db9c.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/8e/8e0cd8ed44d4412cbe0642067abc9e44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/8e/8e0cd8ed44d4412cbe0642067abc9e44 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/8e/8e0cd8ed44d4412cbe0642067abc9e44.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/8e/8e0cd8ed44d4412cbe0642067abc9e44.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/94/947c75ff94416094fbc114de01470d7d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/94/947c75ff94416094fbc114de01470d7d -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/94/947c75ff94416094fbc114de01470d7d.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/94/947c75ff94416094fbc114de01470d7d.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/95/952b213300c6caf4aa32f305bc01e72e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/95/952b213300c6caf4aa32f305bc01e72e -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/95/952b213300c6caf4aa32f305bc01e72e.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/95/952b213300c6caf4aa32f305bc01e72e.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/97/97decbdab0634cdd991f8d23ddf0dead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/97/97decbdab0634cdd991f8d23ddf0dead -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/97/97decbdab0634cdd991f8d23ddf0dead.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/97/97decbdab0634cdd991f8d23ddf0dead.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/a3/a38fd6e6629d9ac4c934cc2a3bca67c1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/a3/a38fd6e6629d9ac4c934cc2a3bca67c1 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/a3/a38fd6e6629d9ac4c934cc2a3bca67c1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/a3/a38fd6e6629d9ac4c934cc2a3bca67c1.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/ad/ad0edf9a70b3ac741a360637e30033ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/ad/ad0edf9a70b3ac741a360637e30033ab -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/ad/ad0edf9a70b3ac741a360637e30033ab.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/ad/ad0edf9a70b3ac741a360637e30033ab.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/b5/b542818a732a6ba43b41d1d166519fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/b5/b542818a732a6ba43b41d1d166519fdf -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/b5/b542818a732a6ba43b41d1d166519fdf.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/b5/b542818a732a6ba43b41d1d166519fdf.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/b6/b6f35c7f9d0ce9b4fa8c0925847247a4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/b6/b6f35c7f9d0ce9b4fa8c0925847247a4 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/b6/b6f35c7f9d0ce9b4fa8c0925847247a4.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/b6/b6f35c7f9d0ce9b4fa8c0925847247a4.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/b7/b7db641474789224f84d2cee193d6834: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/b7/b7db641474789224f84d2cee193d6834 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/b7/b7db641474789224f84d2cee193d6834.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/b7/b7db641474789224f84d2cee193d6834.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/bd/bd69bd070e0f4a84abc53a837c329196: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/bd/bd69bd070e0f4a84abc53a837c329196 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/bd/bd69bd070e0f4a84abc53a837c329196.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/bd/bd69bd070e0f4a84abc53a837c329196.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c2/c21eea24ee48b36479a7d23c522c5fca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c2/c21eea24ee48b36479a7d23c522c5fca -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c2/c21eea24ee48b36479a7d23c522c5fca.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c2/c21eea24ee48b36479a7d23c522c5fca.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c3/c3184e5ca79cba74e8efa2f3ea467486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c3/c3184e5ca79cba74e8efa2f3ea467486 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c3/c3184e5ca79cba74e8efa2f3ea467486.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c3/c3184e5ca79cba74e8efa2f3ea467486.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c3/c3c7337ece6b948489e1a3f730cbfa19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c3/c3c7337ece6b948489e1a3f730cbfa19 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c3/c3c7337ece6b948489e1a3f730cbfa19.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c3/c3c7337ece6b948489e1a3f730cbfa19.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c6/c6b98a639ba54854ca65bd66376cab57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c6/c6b98a639ba54854ca65bd66376cab57 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c6/c6b98a639ba54854ca65bd66376cab57.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c6/c6b98a639ba54854ca65bd66376cab57.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c9/c997aec81f858e84b9233472d181e041: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c9/c997aec81f858e84b9233472d181e041 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c9/c997aec81f858e84b9233472d181e041.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c9/c997aec81f858e84b9233472d181e041.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c9/c9cc20e9f58b57a43bab73f4167b0fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c9/c9cc20e9f58b57a43bab73f4167b0fb2 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/c9/c9cc20e9f58b57a43bab73f4167b0fb2.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/c9/c9cc20e9f58b57a43bab73f4167b0fb2.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/cb/cb45b9e4fcca10c4aade533e2ae0b6b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/cb/cb45b9e4fcca10c4aade533e2ae0b6b5 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/cb/cb45b9e4fcca10c4aade533e2ae0b6b5.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/cb/cb45b9e4fcca10c4aade533e2ae0b6b5.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/d4/d4914e11a81aa9e4588166d08d79e133: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/d4/d4914e11a81aa9e4588166d08d79e133 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/d4/d4914e11a81aa9e4588166d08d79e133.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/d4/d4914e11a81aa9e4588166d08d79e133.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/d6/d61fe425a8479204fa462c4a5bf3dd04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/d6/d61fe425a8479204fa462c4a5bf3dd04 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/d6/d61fe425a8479204fa462c4a5bf3dd04.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/d6/d61fe425a8479204fa462c4a5bf3dd04.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/d6/d6bb1c36c2441674ab91743964688cea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/d6/d6bb1c36c2441674ab91743964688cea -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/d6/d6bb1c36c2441674ab91743964688cea.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/d6/d6bb1c36c2441674ab91743964688cea.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/dd/dd814342b2235b248b39c0d1b11ae2e8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/dd/dd814342b2235b248b39c0d1b11ae2e8 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/dd/dd814342b2235b248b39c0d1b11ae2e8.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/dd/dd814342b2235b248b39c0d1b11ae2e8.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e4/e4e94dd34ed6a8b47a4d2bbb16c2c195: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e4/e4e94dd34ed6a8b47a4d2bbb16c2c195 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e4/e4e94dd34ed6a8b47a4d2bbb16c2c195.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e4/e4e94dd34ed6a8b47a4d2bbb16c2c195.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e5/e5e409b378e3cac469562e76635d9f46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e5/e5e409b378e3cac469562e76635d9f46 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e5/e5e409b378e3cac469562e76635d9f46.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e5/e5e409b378e3cac469562e76635d9f46.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e7/e7a11388154d41d4f8ab0448498fc6c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e7/e7a11388154d41d4f8ab0448498fc6c0 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e7/e7a11388154d41d4f8ab0448498fc6c0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e7/e7a11388154d41d4f8ab0448498fc6c0.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e8/e8297c9155feb254d9851d9aa4c7c742: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e8/e8297c9155feb254d9851d9aa4c7c742 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e8/e8297c9155feb254d9851d9aa4c7c742.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e8/e8297c9155feb254d9851d9aa4c7c742.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e9/e9436e2200151354b9b3e26bf84c094f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e9/e9436e2200151354b9b3e26bf84c094f -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/e9/e9436e2200151354b9b3e26bf84c094f.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/e9/e9436e2200151354b9b3e26bf84c094f.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/eb/eb19e1a68d0c5d242bda2023ca20046e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/eb/eb19e1a68d0c5d242bda2023ca20046e -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/eb/eb19e1a68d0c5d242bda2023ca20046e.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/eb/eb19e1a68d0c5d242bda2023ca20046e.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/ec/ec411871d98f50d4a938484feed52866: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/ec/ec411871d98f50d4a938484feed52866 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/ec/ec411871d98f50d4a938484feed52866.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/ec/ec411871d98f50d4a938484feed52866.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/f9/f9a8b92fbc3432d449187ece725130d8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/f9/f9a8b92fbc3432d449187ece725130d8 -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/metadata/f9/f9a8b92fbc3432d449187ece725130d8.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/Library/metadata/f9/f9a8b92fbc3432d449187ece725130d8.info -------------------------------------------------------------------------------- /LOLTest/LOLTest/Library/shadercompiler-UnityShaderCompiler.exe0.log: -------------------------------------------------------------------------------- 1 | Base path: D:/Unity/Editor/Data 2 | Cmd: getPlatforms 3 | -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /LOLTest/LOLTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzllove9/Unity-LOL/HEAD/LOLTest/LOLTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache --------------------------------------------------------------------------------