├── Bin └── run.bat ├── Config ├── BuffConfig.txt ├── StartConfig │ ├── 127.0.0.1.txt │ ├── Benchmark.txt │ ├── BenchmarkWebsocket.txt │ ├── LocalAllServer.txt │ └── LocalAllServerWebsocket.txt ├── UnitConfig.txt └── graph.bytes ├── Excel └── UnitConfig.xlsx ├── FileServer ├── Microsoft.AspNetCore.Hosting.Abstractions.dll ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll ├── Microsoft.AspNetCore.Http.Abstractions.dll ├── Microsoft.AspNetCore.Http.Extensions.dll ├── Microsoft.AspNetCore.Http.Features.dll ├── Microsoft.AspNetCore.StaticFiles.dll ├── Microsoft.Extensions.Configuration.Abstractions.dll ├── Microsoft.Extensions.Configuration.dll ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll ├── Microsoft.Extensions.FileProviders.Abstractions.dll ├── Microsoft.Extensions.Hosting.Abstractions.dll ├── Microsoft.Extensions.Logging.Abstractions.dll ├── Microsoft.Extensions.Options.dll ├── Microsoft.Extensions.Primitives.dll ├── Microsoft.Extensions.WebEncoders.dll ├── Microsoft.Net.Http.Headers.dll └── web.config ├── LICENSE ├── Proto ├── HotfixMessage.proto ├── InnerMessage.proto ├── OuterMessage.proto ├── protoc └── protoc.exe ├── README.md ├── Server ├── .vs │ └── Server │ │ ├── DesignTimeBuild │ │ ├── .dtbcache │ │ └── .dtbcache.v2 │ │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ │ └── v16 │ │ └── .suo ├── App │ ├── App.config │ ├── NLog.config │ ├── NLog.xsd │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Server.App.csproj │ └── obj │ │ ├── Debug │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── App.dll │ │ ├── App.exe │ │ ├── App.pdb │ │ ├── Server.App.AssemblyInfo.cs │ │ ├── Server.App.AssemblyInfoInputs.cache │ │ ├── Server.App.assets.cache │ │ ├── Server.App.csproj.CopyComplete │ │ ├── Server.App.csproj.CoreCompileInputs.cache │ │ ├── Server.App.csproj.FileListAbsolute.txt │ │ ├── Server.App.csprojAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── Server.App.csproj.nuget.cache │ │ ├── Server.App.csproj.nuget.dgspec.json │ │ ├── Server.App.csproj.nuget.g.props │ │ ├── Server.App.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── Hotfix │ ├── Handler │ │ ├── C2G_PlayerInfoHandler.cs │ │ ├── C2M_ReloadHandler.cs │ │ ├── C2M_TestRequestHandler.cs │ │ ├── C2R_PingHandler.cs │ │ ├── G2C_TestHandler.cs │ │ └── M2A_ReloadHandler.cs │ ├── Helper │ │ └── HotfixHelper.cs │ ├── Module │ │ ├── Actor │ │ │ ├── ActorMessageDispatcherComponentSystem.cs │ │ │ ├── ActorMessageSenderHelper.cs │ │ │ ├── MailBoxComponentSystem.cs │ │ │ ├── MailboxDispatcherComponentSystem.cs │ │ │ ├── MailboxGateSessionHandler.cs │ │ │ └── MailboxMessageDispatcherHandler.cs │ │ ├── ActorLocation │ │ │ ├── ActorLocationSenderComponentSystem.cs │ │ │ ├── ActorLocationSenderSystem.cs │ │ │ ├── LocationProxyComponentSystem.cs │ │ │ ├── ObjectAddRequestHandler.cs │ │ │ ├── ObjectGetRequestHandler.cs │ │ │ ├── ObjectLockRequestHandler.cs │ │ │ ├── ObjectRemoveRequestHandler.cs │ │ │ └── ObjectUnLockRequestHandler.cs │ │ ├── Benchmark │ │ │ ├── BenchmarkComponentSystem.cs │ │ │ └── WebSocketBenchmarkComponentSystem.cs │ │ ├── Config │ │ │ └── ConfigComponentSystem.cs │ │ ├── DB │ │ │ ├── DBProxyComponentSystem.cs │ │ │ ├── DBQueryBatchRequestHandler.cs │ │ │ ├── DBQueryJsonRequestHandler.cs │ │ │ ├── DBQueryRequestHandler.cs │ │ │ ├── DBSaveBatchRequestHandler.cs │ │ │ └── DBSaveRequestHandler.cs │ │ ├── Demo │ │ │ ├── Actor_TransferHandler.cs │ │ │ ├── C2G_EnterMapHandler.cs │ │ │ ├── C2G_LoginGateHandler.cs │ │ │ ├── C2M_TestActorRequestHandler.cs │ │ │ ├── C2R_LoginHandler.cs │ │ │ ├── Frame_ClickMapHandler.cs │ │ │ ├── G2M_CreateUnitHandler.cs │ │ │ ├── G2M_SessionDisconnectHandler.cs │ │ │ ├── M2M_TrasferUnitRequest.cs │ │ │ ├── MessageHelper.cs │ │ │ ├── R2G_GetLoginKeyHandler.cs │ │ │ ├── RealmGateAddressComponentSystem.cs │ │ │ ├── SessionPlayerComponentSystem.cs │ │ │ └── UnitPathComponentSystem.cs │ │ ├── Http │ │ │ └── HttpTest.cs │ │ └── Message │ │ │ ├── InnerMessageDispatcher.cs │ │ │ ├── MessageDispatherComponentSystem.cs │ │ │ ├── NetInnerComponentSystem.cs │ │ │ ├── NetOuterComponentSystem.cs │ │ │ └── OuterMessageDispatcher.cs │ ├── Server.Hotfix.csproj │ └── obj │ │ ├── Debug │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Hotfix.dll │ │ ├── Hotfix.pdb │ │ ├── Server.Hotfix.AssemblyInfo.cs │ │ ├── Server.Hotfix.AssemblyInfoInputs.cache │ │ ├── Server.Hotfix.assets.cache │ │ ├── Server.Hotfix.csproj.CopyComplete │ │ ├── Server.Hotfix.csproj.CoreCompileInputs.cache │ │ ├── Server.Hotfix.csproj.FileListAbsolute.txt │ │ ├── Server.Hotfix.csprojAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── Server.Hotfix.csproj.nuget.cache │ │ ├── Server.Hotfix.csproj.nuget.dgspec.json │ │ ├── Server.Hotfix.csproj.nuget.g.props │ │ ├── Server.Hotfix.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── Model │ ├── Base │ │ ├── Async │ │ │ ├── AsyncETTaskMethodBuilder.cs │ │ │ ├── AsyncETVoidMethodBuilder.cs │ │ │ ├── ETCancellationTokenSource.cs │ │ │ ├── ETTask.cs │ │ │ ├── ETTaskCompletionSource.cs │ │ │ ├── ETTaskFactory.cs │ │ │ ├── ETVoid.cs │ │ │ ├── IAwaiter.cs │ │ │ └── MoveNextRunner.cs │ │ ├── Base │ │ │ ├── BaseAttribute.cs │ │ │ ├── Component.cs │ │ │ ├── ComponentFactory.cs │ │ │ ├── ComponentWithId.cs │ │ │ ├── Entity.cs │ │ │ ├── EntityEventAttribute.cs │ │ │ ├── EventProxy.cs │ │ │ ├── EventSystem.cs │ │ │ ├── IAwakeSystem.cs │ │ │ ├── IChangeSystem.cs │ │ │ ├── IDeserializeSystem.cs │ │ │ ├── IDestroySystem.cs │ │ │ ├── ILateUpdateSystem.cs │ │ │ ├── ILoadSystem.cs │ │ │ ├── ISerializeToEntity.cs │ │ │ ├── IStartSystem.cs │ │ │ ├── IUpdateSystem.cs │ │ │ ├── Object.cs │ │ │ ├── ObjectPool.cs │ │ │ └── ObjectSystemAttribute.cs │ │ ├── DoubleMap.cs │ │ ├── Event │ │ │ ├── Env.cs │ │ │ ├── EnvKey.cs │ │ │ ├── EventAttribute.cs │ │ │ ├── EventIdType.cs │ │ │ └── IEvent.cs │ │ ├── Helper │ │ │ ├── ByteHelper.cs │ │ │ ├── DllHelper.cs │ │ │ ├── EnumHelper.cs │ │ │ ├── FileHelper.cs │ │ │ ├── IdGenerater.cs │ │ │ ├── JsonHelper.cs │ │ │ ├── MD5Helper.cs │ │ │ ├── MethodInfoHelper.cs │ │ │ ├── MongoHelper.cs │ │ │ ├── NetHelper.cs │ │ │ ├── ObjectHelper.cs │ │ │ ├── RandomHelper.cs │ │ │ ├── StringHelper.cs │ │ │ ├── TimeHelper.cs │ │ │ └── ZipHelper.cs │ │ ├── Log.cs │ │ ├── LogType.cs │ │ ├── Logger │ │ │ ├── ILog.cs │ │ │ └── NLogAdapter.cs │ │ ├── MultiMap.cs │ │ ├── OneThreadSynchronizationContext.cs │ │ ├── ProcessHelper.cs │ │ ├── QueueDictionary.cs │ │ ├── RecyclableMemoryStream │ │ │ ├── Events.cs │ │ │ ├── RecyclableMemoryStream.cs │ │ │ └── RecyclableMemoryStreamManager.cs │ │ ├── TryLocker.cs │ │ ├── UnOrderMultiMap.cs │ │ └── UnityEngine │ │ │ ├── Mathf.cs │ │ │ ├── Matrix3x3.cs │ │ │ ├── Matrix4x4.cs │ │ │ ├── Quaternion.cs │ │ │ ├── Vector2.cs │ │ │ ├── Vector3.cs │ │ │ └── Vector4.cs │ ├── Component │ │ ├── AppManagerComponent.cs │ │ ├── Config │ │ │ ├── ClientConfig.cs │ │ │ └── StartConfig.cs │ │ ├── ConsoleComponent.cs │ │ ├── KVComponent.cs │ │ ├── OptionComponent.cs │ │ ├── ReplComponent.cs │ │ ├── RobotComponent.cs │ │ ├── StartConfigComponent.cs │ │ └── TimerComponent.cs │ ├── Entity │ │ ├── Game.cs │ │ └── Scene.cs │ ├── Module │ │ ├── Actor │ │ │ ├── AMActorHandler.cs │ │ │ ├── AMActorRpcHandler.cs │ │ │ ├── ActorMessageAttribute.cs │ │ │ ├── ActorMessageDispatcherComponent.cs │ │ │ ├── ActorMessageHandlerAttribute.cs │ │ │ ├── ActorMessageSender.cs │ │ │ ├── ActorMessageSenderComponent.cs │ │ │ ├── ActorResponse.cs │ │ │ ├── ActorTask.cs │ │ │ ├── IActorMessage.cs │ │ │ ├── IMActorHandler.cs │ │ │ ├── IMailboxHandler.cs │ │ │ ├── MailBoxComponent.cs │ │ │ ├── MailboxDispatcherComponent.cs │ │ │ ├── MailboxHandlerAttribute.cs │ │ │ └── MailboxType.cs │ │ ├── ActorLocation │ │ │ ├── AMActorLocationHandler.cs │ │ │ ├── AMActorLocationRpcHandler.cs │ │ │ ├── ActorLocationSender.cs │ │ │ ├── ActorLocationSenderComponent.cs │ │ │ ├── IActorLocationMessage.cs │ │ │ ├── Location.cs │ │ │ ├── LocationComponent.cs │ │ │ └── LocationProxyComponent.cs │ │ ├── Benchmark │ │ │ ├── BenchmarkComponent.cs │ │ │ └── WebSocketBenchmarkComponent.cs │ │ ├── Config │ │ │ ├── ACategory.cs │ │ │ ├── AConfigComponent.cs │ │ │ ├── ConfigAttribute.cs │ │ │ ├── ConfigComponent.cs │ │ │ ├── ConfigHelper.cs │ │ │ └── IConfig.cs │ │ ├── CoroutineLock │ │ │ ├── CoroutineLock.cs │ │ │ ├── CoroutineLockComponent.cs │ │ │ ├── CoroutineLockQueue.cs │ │ │ ├── CoroutineLockQueueType.cs │ │ │ └── CoroutineLockType.cs │ │ ├── DB │ │ │ ├── DBComponent.cs │ │ │ ├── DBConfig.cs │ │ │ ├── DBProxyComponent.cs │ │ │ ├── DBQueryBatchTask.cs │ │ │ ├── DBQueryJsonTask.cs │ │ │ ├── DBQueryTask.cs │ │ │ ├── DBSaveBatchTask.cs │ │ │ ├── DBSaveTask.cs │ │ │ ├── DBTask.cs │ │ │ └── DBTaskQueue.cs │ │ ├── Demo │ │ │ ├── Config │ │ │ │ └── UnitConfig.cs │ │ │ ├── GateSessionKeyComponent.cs │ │ │ ├── MoveComponent.cs │ │ │ ├── Player.cs │ │ │ ├── PlayerComponent.cs │ │ │ ├── RealmGateAddressComponent.cs │ │ │ ├── SessionInfoComponent.cs │ │ │ ├── SessionPlayerComponent.cs │ │ │ ├── Unit.cs │ │ │ ├── UnitComponent.cs │ │ │ ├── UnitGateComponent.cs │ │ │ └── UnitPathComponent.cs │ │ ├── Http │ │ │ ├── Http.cs │ │ │ ├── HttpComponent.cs │ │ │ ├── HttpConfig.cs │ │ │ ├── HttpHandlerAttribute.cs │ │ │ └── IHttpHandler.cs │ │ ├── Message │ │ │ ├── AMHandler.cs │ │ │ ├── AMRpcHandler.cs │ │ │ ├── ErrorCode.cs │ │ │ ├── HotfixMessage.cs │ │ │ ├── HotfixOpcode.cs │ │ │ ├── IMHandler.cs │ │ │ ├── IMessage.cs │ │ │ ├── IMessageDispatcher.cs │ │ │ ├── IMessagePacker.cs │ │ │ ├── InnerConfig.cs │ │ │ ├── InnerMessage.cs │ │ │ ├── InnerOpcode.cs │ │ │ ├── MessageAttribute.cs │ │ │ ├── MessageDispatcherComponent.cs │ │ │ ├── MessageHandlerAttribute.cs │ │ │ ├── MessageInfo.cs │ │ │ ├── MessagePool │ │ │ │ ├── ETHotfix │ │ │ │ │ └── MessagePool.cs │ │ │ │ └── ETModel │ │ │ │ │ └── MessagePool.cs │ │ │ ├── MongoPacker.cs │ │ │ ├── NetInnerComponent.cs │ │ │ ├── NetOuterComponent.cs │ │ │ ├── Network │ │ │ │ ├── AChannel.cs │ │ │ │ ├── AService.cs │ │ │ │ ├── Circularbuffer.cs │ │ │ │ ├── KCP │ │ │ │ │ ├── KChannel.cs │ │ │ │ │ └── KService.cs │ │ │ │ ├── NetworkHelper.cs │ │ │ │ ├── TCP │ │ │ │ │ ├── PacketParser.cs │ │ │ │ │ ├── TChannel.cs │ │ │ │ │ └── TService.cs │ │ │ │ └── WebSocket │ │ │ │ │ ├── WChannel.cs │ │ │ │ │ └── WService.cs │ │ │ ├── NetworkComponent.cs │ │ │ ├── Opcode.cs │ │ │ ├── OpcodeHelper.cs │ │ │ ├── OpcodeTypeComponent.cs │ │ │ ├── OuterConfig.cs │ │ │ ├── OuterMessage.cs │ │ │ ├── OuterOpcode.cs │ │ │ ├── ProtobufHelper.cs │ │ │ ├── ProtobufPacker.cs │ │ │ ├── RpcException.cs │ │ │ └── Session.cs │ │ ├── Numeric │ │ │ ├── INumericWatcher.cs │ │ │ ├── NumericChangeEvent_NotifyWatcher.cs │ │ │ ├── NumericComponent.cs │ │ │ ├── NumericType.cs │ │ │ ├── NumericWatcherAttribute.cs │ │ │ └── NumericWatcherComponent.cs │ │ └── Pathfinding │ │ │ ├── ABPathWrap.cs │ │ │ ├── DeserializeHelper.cs │ │ │ ├── PathModifyHelper.cs │ │ │ ├── PathfindingComponent.cs │ │ │ └── Recast │ │ │ ├── AStarConfig.cs │ │ │ ├── ArrayPool.cs │ │ │ ├── AstarChecksum.cs │ │ │ ├── AstarDeserializer.cs │ │ │ ├── AstarMath.cs │ │ │ ├── AstarMemory.cs │ │ │ ├── BBTree.cs │ │ │ ├── BinaryHeap.cs │ │ │ ├── EuclideanEmbedding.cs │ │ │ ├── FloodPathTracer.cs │ │ │ ├── Funnel.cs │ │ │ ├── GraphNode.cs │ │ │ ├── GraphTransform.cs │ │ │ ├── Guid.cs │ │ │ ├── INavmesh.cs │ │ │ ├── Int3.cs │ │ │ ├── IntRect.cs │ │ │ ├── ListPool.cs │ │ │ ├── NN.cs │ │ │ ├── NavGraph.cs │ │ │ ├── NavmeshBase.cs │ │ │ ├── NavmeshTile.cs │ │ │ ├── ObjectPool.cs │ │ │ ├── Path.cs │ │ │ ├── PathFindHelper.cs │ │ │ ├── PathHandler.cs │ │ │ ├── PathPool.cs │ │ │ ├── PathProcessor.cs │ │ │ ├── PathReturnQueue.cs │ │ │ ├── Pathfinders │ │ │ ├── ABPath.cs │ │ │ ├── ConstantPath.cs │ │ │ ├── FleePath.cs │ │ │ ├── FloodPath.cs │ │ │ ├── MultiTargetPath.cs │ │ │ ├── RandomPath.cs │ │ │ └── XPath.cs │ │ │ ├── RecastGenerator.cs │ │ │ ├── Serialization │ │ │ ├── JsonSerializer.cs │ │ │ ├── SimpleZipReplacement.cs │ │ │ └── TinyJson.cs │ │ │ ├── ThreadControlQueue.cs │ │ │ ├── TriangleMeshNode.cs │ │ │ └── WindowsStoreCompatibility.cs │ ├── Other │ │ ├── AppType.cs │ │ └── Options.cs │ ├── Server.Model.csproj │ ├── Server.Model.csproj.user │ └── obj │ │ ├── Debug │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Model.dll │ │ ├── Model.pdb │ │ ├── Server.Model.AssemblyInfo.cs │ │ ├── Server.Model.AssemblyInfoInputs.cache │ │ ├── Server.Model.assets.cache │ │ ├── Server.Model.csproj.CopyComplete │ │ ├── Server.Model.csproj.CoreCompileInputs.cache │ │ ├── Server.Model.csproj.FileListAbsolute.txt │ │ ├── Server.Model.csprojAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── Server.Model.csproj.nuget.cache │ │ ├── Server.Model.csproj.nuget.dgspec.json │ │ ├── Server.Model.csproj.nuget.g.props │ │ ├── Server.Model.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── Server.sln ├── Server.sln.DotSettings ├── Server.sln.DotSettings.user └── ThirdParty │ ├── Google.Protobuf │ ├── ByteArray.cs │ ├── ByteString.cs │ ├── CodedInputStream.cs │ ├── CodedOutputStream.ComputeSize.cs │ ├── CodedOutputStream.cs │ ├── FieldCodec.cs │ ├── Google.Protobuf.csproj │ ├── ICustomDiagnosticMessage.cs │ ├── IMessage.cs │ ├── InvalidProtocolBufferException.cs │ ├── LimitedInputStream.cs │ ├── MessageExtensions.cs │ ├── MessageParser.cs │ ├── PropertyInfoExtensions.cs │ ├── ProtoPreconditions.cs │ ├── RepeatedField.cs │ ├── StreamExtensions.cs │ ├── WireFormat.cs │ └── obj │ │ ├── Debug │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ ├── Google.Protobuf.AssemblyInfo.cs │ │ ├── Google.Protobuf.AssemblyInfoInputs.cache │ │ ├── Google.Protobuf.assets.cache │ │ ├── Google.Protobuf.csproj.CopyComplete │ │ ├── Google.Protobuf.csproj.CoreCompileInputs.cache │ │ ├── Google.Protobuf.csproj.FileListAbsolute.txt │ │ ├── Google.Protobuf.csprojAssemblyReference.cache │ │ ├── Google.Protobuf.dll │ │ ├── Google.Protobuf.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── Google.Protobuf.csproj.nuget.cache │ │ ├── Google.Protobuf.csproj.nuget.dgspec.json │ │ ├── Google.Protobuf.csproj.nuget.g.props │ │ ├── Google.Protobuf.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── KcpLib │ ├── Kcp.cs │ ├── KcpLib.csproj │ ├── kcp.dll │ ├── libkcp.dylib │ ├── libkcp.so │ └── obj │ │ ├── Debug │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ ├── KcpLib.AssemblyInfo.cs │ │ ├── KcpLib.AssemblyInfoInputs.cache │ │ ├── KcpLib.assets.cache │ │ ├── KcpLib.csproj.CoreCompileInputs.cache │ │ ├── KcpLib.csproj.FileListAbsolute.txt │ │ ├── KcpLib.dll │ │ ├── KcpLib.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── KcpLib.csproj.nuget.cache │ │ ├── KcpLib.csproj.nuget.dgspec.json │ │ ├── KcpLib.csproj.nuget.g.props │ │ ├── KcpLib.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── MongoDBDriver │ ├── MongoDB.Bson │ │ ├── BsonConstants.cs │ │ ├── BsonDefaults.cs │ │ ├── BsonExtensionMethods.cs │ │ ├── BsonUtils.cs │ │ ├── Exceptions │ │ │ ├── BsonException.cs │ │ │ ├── BsonInternalException.cs │ │ │ ├── BsonSerializationException.cs │ │ │ ├── DuplicateBsonMemberMapAttributeException.cs │ │ │ └── TruncationException.cs │ │ ├── IO │ │ │ ├── ArrayElementNameAccelerator.cs │ │ │ ├── BsonBinaryReader.cs │ │ │ ├── BsonBinaryReaderBookmark.cs │ │ │ ├── BsonBinaryReaderContext.cs │ │ │ ├── BsonBinaryReaderSettings.cs │ │ │ ├── BsonBinaryWriter.cs │ │ │ ├── BsonBinaryWriterContext.cs │ │ │ ├── BsonBinaryWriterSettings.cs │ │ │ ├── BsonChunkPool.cs │ │ │ ├── BsonDocumentReader.cs │ │ │ ├── BsonDocumentReaderBookmark.cs │ │ │ ├── BsonDocumentReaderContext.cs │ │ │ ├── BsonDocumentReaderSettings.cs │ │ │ ├── BsonDocumentWriter.cs │ │ │ ├── BsonDocumentWriterContext.cs │ │ │ ├── BsonDocumentWriterSettings.cs │ │ │ ├── BsonReader.cs │ │ │ ├── BsonReaderBookmark.cs │ │ │ ├── BsonReaderSettings.cs │ │ │ ├── BsonReaderState.cs │ │ │ ├── BsonStream.cs │ │ │ ├── BsonStreamAdapter.cs │ │ │ ├── BsonStreamExtensions.cs │ │ │ ├── BsonTrie.cs │ │ │ ├── BsonWriter.cs │ │ │ ├── BsonWriterSettings.cs │ │ │ ├── BsonWriterState.cs │ │ │ ├── ByteArrayBuffer.cs │ │ │ ├── ByteArrayChunk.cs │ │ │ ├── ByteBufferFactory.cs │ │ │ ├── ByteBufferSlice.cs │ │ │ ├── ByteBufferStream.cs │ │ │ ├── CStringUtf8Encoding.cs │ │ │ ├── ContextType.cs │ │ │ ├── ElementAppendingBsonWriter.cs │ │ │ ├── IBsonChunk.cs │ │ │ ├── IBsonChunkSource.cs │ │ │ ├── IBsonReader.cs │ │ │ ├── IBsonReaderExtensions.cs │ │ │ ├── IBsonWriter.cs │ │ │ ├── IBsonWriterExtensions.cs │ │ │ ├── IByteBuffer.cs │ │ │ ├── IElementNameValidator.cs │ │ │ ├── INameDecoder.cs │ │ │ ├── InputBufferChunkSource.cs │ │ │ ├── JsonBuffer.cs │ │ │ ├── JsonConvert.cs │ │ │ ├── JsonOutputMode.cs │ │ │ ├── JsonReader.cs │ │ │ ├── JsonReaderBookmark.cs │ │ │ ├── JsonReaderContext.cs │ │ │ ├── JsonReaderSettings.cs │ │ │ ├── JsonScanner.cs │ │ │ ├── JsonToken.cs │ │ │ ├── JsonWriter.cs │ │ │ ├── JsonWriterContext.cs │ │ │ ├── JsonWriterSettings.cs │ │ │ ├── MultiChunkBuffer.cs │ │ │ ├── NoOpElementNameValidator.cs │ │ │ ├── OutputBufferChunkSource.cs │ │ │ ├── SingleChunkBuffer.cs │ │ │ ├── TrieNameDecoder.cs │ │ │ ├── Utf8Encodings.cs │ │ │ ├── Utf8Helper.cs │ │ │ ├── Utf8NameDecoder.cs │ │ │ └── WrappingBsonWriter.cs │ │ ├── MongoDB.Bson.csproj │ │ ├── ObjectModel │ │ │ ├── BsonArray.cs │ │ │ ├── BsonBinaryData.cs │ │ │ ├── BsonBinarySubType.cs │ │ │ ├── BsonBoolean.cs │ │ │ ├── BsonDateTime.cs │ │ │ ├── BsonDecimal128.cs │ │ │ ├── BsonDocument.cs │ │ │ ├── BsonDocumentWrapper.cs │ │ │ ├── BsonDouble.cs │ │ │ ├── BsonElement.cs │ │ │ ├── BsonInt32.cs │ │ │ ├── BsonInt64.cs │ │ │ ├── BsonJavaScript.cs │ │ │ ├── BsonJavaScriptWithScope.cs │ │ │ ├── BsonMaxKey.cs │ │ │ ├── BsonMinKey.cs │ │ │ ├── BsonNull.cs │ │ │ ├── BsonObjectId.cs │ │ │ ├── BsonRegularExpression.cs │ │ │ ├── BsonString.cs │ │ │ ├── BsonSymbol.cs │ │ │ ├── BsonSymbolTable.cs │ │ │ ├── BsonTimestamp.cs │ │ │ ├── BsonType.cs │ │ │ ├── BsonTypeMapper.cs │ │ │ ├── BsonTypeMapperOptions.cs │ │ │ ├── BsonUndefined.cs │ │ │ ├── BsonValue.cs │ │ │ ├── Decimal128.cs │ │ │ ├── GuidConverter.cs │ │ │ ├── GuidRepresentation.cs │ │ │ ├── IConvertibleToBsonDocument.cs │ │ │ ├── ICustomBsonTypeMapper.cs │ │ │ ├── LazyBsonArray.cs │ │ │ ├── LazyBsonDocument.cs │ │ │ ├── MaterializedOnDemandBsonArray.cs │ │ │ ├── MaterializedOnDemandBsonDocument.cs │ │ │ ├── ObjectId.cs │ │ │ ├── RawBsonArray.cs │ │ │ ├── RawBsonDocument.cs │ │ │ └── UInt128.cs │ │ ├── PowerOf2.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Serialization │ │ │ ├── AttributedSerializationProvider.cs │ │ │ ├── Attributes │ │ │ │ ├── BsonConstructorAttribute.cs │ │ │ │ ├── BsonDateTimeOptionsAttribute.cs │ │ │ │ ├── BsonDefaultValueAttribute.cs │ │ │ │ ├── BsonDictionaryOptionsAttribute.cs │ │ │ │ ├── BsonDiscriminatorAttribute.cs │ │ │ │ ├── BsonElementAttribute.cs │ │ │ │ ├── BsonExtraElementsAttribute.cs │ │ │ │ ├── BsonFactoryMethodAttribute.cs │ │ │ │ ├── BsonIdAttribute.cs │ │ │ │ ├── BsonIgnoreAttribute.cs │ │ │ │ ├── BsonIgnoreExtraElementsAttribute.cs │ │ │ │ ├── BsonIgnoreIfDefaultAttribute.cs │ │ │ │ ├── BsonIgnoreIfNullAttribute.cs │ │ │ │ ├── BsonKnownTypesAttribute.cs │ │ │ │ ├── BsonMemberMapAttributeUsageAttribute.cs │ │ │ │ ├── BsonNoIdAttribute.cs │ │ │ │ ├── BsonRepresentationAttribute.cs │ │ │ │ ├── BsonRequiredAttribute.cs │ │ │ │ ├── BsonSerializationOptionsAttribute.cs │ │ │ │ ├── BsonSerializerAttribute.cs │ │ │ │ ├── BsonTimeSpanOptionsAttribute.cs │ │ │ │ ├── IBsonClassMapAttribute.cs │ │ │ │ ├── IBsonCreatorMapAttribute.cs │ │ │ │ ├── IBsonMemberMapAttribute.cs │ │ │ │ └── IBsonPostProcessingAttribute.cs │ │ │ ├── BsonClassMap.cs │ │ │ ├── BsonClassMapSerializationProvider.cs │ │ │ ├── BsonCreatorMap.cs │ │ │ ├── BsonDeserializationArgs.cs │ │ │ ├── BsonDeserializationContext.cs │ │ │ ├── BsonDocumentBackedClass.cs │ │ │ ├── BsonMemberMap.cs │ │ │ ├── BsonObjectModelSerializationProvider.cs │ │ │ ├── BsonSerializationArgs.cs │ │ │ ├── BsonSerializationContext.cs │ │ │ ├── BsonSerializationInfo.cs │ │ │ ├── BsonSerializationProviderBase.cs │ │ │ ├── BsonSerializer.cs │ │ │ ├── BsonSerializerRegistry.cs │ │ │ ├── CollectionsSerializationProvider.cs │ │ │ ├── Conventions │ │ │ │ ├── AttributeConventionPack.cs │ │ │ │ ├── CamelCaseElementNameConvention.cs │ │ │ │ ├── ConventionBase.cs │ │ │ │ ├── ConventionPack.cs │ │ │ │ ├── ConventionRegistry.cs │ │ │ │ ├── ConventionRunner.cs │ │ │ │ ├── DefaultConventionPack.cs │ │ │ │ ├── DelegateClassMapConvention.cs │ │ │ │ ├── DelegateMemberMapConvention.cs │ │ │ │ ├── DelegatePostProcessingConvention.cs │ │ │ │ ├── EnumRepresentationConvention.cs │ │ │ │ ├── HierarchicalDiscriminatorConvention.cs │ │ │ │ ├── IClassMapConvention.cs │ │ │ │ ├── IConvention.cs │ │ │ │ ├── IConventionPack.cs │ │ │ │ ├── ICreatorMapConvention.cs │ │ │ │ ├── IDiscriminatorConvention.cs │ │ │ │ ├── IMemberMapConvention.cs │ │ │ │ ├── IPostProcessingConvention.cs │ │ │ │ ├── IgnoreExtraElementsConvention.cs │ │ │ │ ├── IgnoreIfDefaultConvention.cs │ │ │ │ ├── IgnoreIfNullConvention.cs │ │ │ │ ├── ImmutableTypeClassMapConvention.cs │ │ │ │ ├── LookupIdGeneratorConvention.cs │ │ │ │ ├── MemberDefaultValueConvention.cs │ │ │ │ ├── MemberNameElementNameConvention.cs │ │ │ │ ├── NamedExtraElementsMemberConvention.cs │ │ │ │ ├── NamedIdMemberConvention.cs │ │ │ │ ├── NamedParameterCreatorMapConvention.cs │ │ │ │ ├── NoIdMemberConvention.cs │ │ │ │ ├── ObjectDiscriminatorConvention.cs │ │ │ │ ├── ReadWriteMemberFinderConvention.cs │ │ │ │ ├── ResetClassMapConvention.cs │ │ │ │ ├── ResetMemberMapsConvention.cs │ │ │ │ ├── ScalarDiscriminatorConvention.cs │ │ │ │ ├── StandardDiscriminatorConvention.cs │ │ │ │ └── StringObjectIdIdGeneratorConvention.cs │ │ │ ├── CreatorMapDelegateCompiler.cs │ │ │ ├── DiscriminatedInterfaceSerializationProvider.cs │ │ │ ├── ExpressionVisitor.cs │ │ │ ├── IBsonArraySerializer.cs │ │ │ ├── IBsonDictionarySerializer.cs │ │ │ ├── IBsonDocumentSerializer.cs │ │ │ ├── IBsonIdProvider.cs │ │ │ ├── IBsonPolymorphicSerializer.cs │ │ │ ├── IBsonSerializationProvider.cs │ │ │ ├── IBsonSerializer.cs │ │ │ ├── IBsonSerializerExtensions.cs │ │ │ ├── IBsonSerializerRegistry.cs │ │ │ ├── IChildSerializerConfigurable.cs │ │ │ ├── ICreatorSelector.cs │ │ │ ├── IDictionaryRepresentationConfigurable.cs │ │ │ ├── IIdGenerator.cs │ │ │ ├── IRepresentationConfigurable.cs │ │ │ ├── IRepresentationConverterConfigurable.cs │ │ │ ├── IdGenerators │ │ │ │ ├── AscendingGuidGenerator.cs │ │ │ │ ├── BsonBinaryDataGuidGenerator.cs │ │ │ │ ├── BsonObjectIdGenerator.cs │ │ │ │ ├── CombGuidGenerator.cs │ │ │ │ ├── GuidGenerator.cs │ │ │ │ ├── NullIdChecker.cs │ │ │ │ ├── ObjectIdGenerator.cs │ │ │ │ ├── StringObjectIdGenerator.cs │ │ │ │ └── ZeroIdChecker.cs │ │ │ ├── MostArgumentsCreatorSelector.cs │ │ │ ├── Options │ │ │ │ ├── DictionaryRepresentation.cs │ │ │ │ ├── RepresentationConverter.cs │ │ │ │ └── TimeSpanUnits.cs │ │ │ ├── PrimitiveSerializationProvider.cs │ │ │ ├── Serializers │ │ │ │ ├── AbstractClassSerializer.cs │ │ │ │ ├── ArraySerializer.cs │ │ │ │ ├── BitArraySerializer.cs │ │ │ │ ├── BooleanSerializer.cs │ │ │ │ ├── BsonArraySerializer.cs │ │ │ │ ├── BsonBinaryDataSerializer.cs │ │ │ │ ├── BsonBooleanSerializer.cs │ │ │ │ ├── BsonClassMapSerializer.cs │ │ │ │ ├── BsonDateTimeSerializer.cs │ │ │ │ ├── BsonDecimal128Serializer.cs │ │ │ │ ├── BsonDocumentBackedClassSerializer.cs │ │ │ │ ├── BsonDocumentSerializer.cs │ │ │ │ ├── BsonDocumentWrapperSerializer.cs │ │ │ │ ├── BsonDoubleSerializer.cs │ │ │ │ ├── BsonInt32Serializer.cs │ │ │ │ ├── BsonInt64Serializer.cs │ │ │ │ ├── BsonJavaScriptSerializer.cs │ │ │ │ ├── BsonJavaScriptWithScopeSerializer.cs │ │ │ │ ├── BsonMaxKeySerializer.cs │ │ │ │ ├── BsonMinKeySerializer.cs │ │ │ │ ├── BsonNullSerializer.cs │ │ │ │ ├── BsonObjectIdSerializer.cs │ │ │ │ ├── BsonRegularExpressionSerializer.cs │ │ │ │ ├── BsonStringSerializer.cs │ │ │ │ ├── BsonSymbolSerializer.cs │ │ │ │ ├── BsonTimestampSerializer.cs │ │ │ │ ├── BsonUndefinedSerializer.cs │ │ │ │ ├── BsonValueCSharpNullSerializer.cs │ │ │ │ ├── BsonValueSerializer.cs │ │ │ │ ├── BsonValueSerializerBase.cs │ │ │ │ ├── ByteArraySerializer.cs │ │ │ │ ├── ByteSerializer.cs │ │ │ │ ├── CharSerializer.cs │ │ │ │ ├── ClassSerializerBase.cs │ │ │ │ ├── CultureInfoSerializer.cs │ │ │ │ ├── DateTimeOffsetSerializer.cs │ │ │ │ ├── DateTimeSerializer.cs │ │ │ │ ├── Decimal128Serializer.cs │ │ │ │ ├── DecimalSerializer.cs │ │ │ │ ├── DictionaryInterfaceImplementerSerializer.cs │ │ │ │ ├── DictionarySerializerBase.cs │ │ │ │ ├── DiscriminatedInterfaceSerializer.cs │ │ │ │ ├── DiscriminatedWrapperSerializer.cs │ │ │ │ ├── DoubleSerializer.cs │ │ │ │ ├── DynamicDocumentBaseSerializer.cs │ │ │ │ ├── ElementAppendingSerializer.cs │ │ │ │ ├── EnumSerializer.cs │ │ │ │ ├── EnumerableInterfaceImplementerSerializer.cs │ │ │ │ ├── EnumerableInterfaceImplementerSerializerBase.cs │ │ │ │ ├── EnumerableSerializerBase.cs │ │ │ │ ├── ExpandoObjectSerializer.cs │ │ │ │ ├── GuidSerializer.cs │ │ │ │ ├── IPAddressSerializer.cs │ │ │ │ ├── IPEndPointSerializer.cs │ │ │ │ ├── ImpliedImplementationInterfaceSerializer.cs │ │ │ │ ├── Int16Serializer.cs │ │ │ │ ├── Int32Serializer.cs │ │ │ │ ├── Int64Serializer.cs │ │ │ │ ├── KeyValuePairSerializer.cs │ │ │ │ ├── LazyBsonArraySerializer.cs │ │ │ │ ├── LazyBsonDocumentSerializer.cs │ │ │ │ ├── NullableGenericSerializer.cs │ │ │ │ ├── ObjectIdSerializer.cs │ │ │ │ ├── ObjectSerializer.cs │ │ │ │ ├── PartiallyRawBsonDocumentSerializer.cs │ │ │ │ ├── ProjectingDeserializer.cs │ │ │ │ ├── QueueSerializer.cs │ │ │ │ ├── RawBsonArraySerializer.cs │ │ │ │ ├── RawBsonDocumentSerializer.cs │ │ │ │ ├── ReadOnlyCollectionSerializer.cs │ │ │ │ ├── ReadOnlyCollectionSubclassSerializer.cs │ │ │ │ ├── ReadOnlyDictionaryInterfaceImplementerSerializer.cs │ │ │ │ ├── SByteSerializer.cs │ │ │ │ ├── SealedClassSerializerBase.cs │ │ │ │ ├── SerializeAsNominalTypeSerializer.cs │ │ │ │ ├── SerializerBase.cs │ │ │ │ ├── SerializerHelper.cs │ │ │ │ ├── SingleSerializer.cs │ │ │ │ ├── StackSerializer.cs │ │ │ │ ├── StringSerializer.cs │ │ │ │ ├── StructSerializerBase.cs │ │ │ │ ├── ThreeDimensionalArraySerializer.cs │ │ │ │ ├── TimeSpanSerializer.cs │ │ │ │ ├── TupleSerializers.cs │ │ │ │ ├── TwoDimensionalArraySerializer.cs │ │ │ │ ├── UInt16Serializer.cs │ │ │ │ ├── UInt32Serializer.cs │ │ │ │ ├── UInt64Serializer.cs │ │ │ │ ├── UndiscriminatedActualTypeSerializer.cs │ │ │ │ ├── UriSerializer.cs │ │ │ │ └── VersionSerializer.cs │ │ │ ├── TypeMappingSerializationProvider.cs │ │ │ └── TypeNameDiscriminator.cs │ │ └── obj │ │ │ ├── Debug │ │ │ ├── netcoreapp2.1 │ │ │ │ ├── MongoDB.Bson.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Bson.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Bson.assets.cache │ │ │ │ ├── MongoDB.Bson.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Bson.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Bson.dll │ │ │ │ ├── MongoDB.Bson.pdb │ │ │ │ ├── MongoDB.Bson.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── netcoreapp2.2 │ │ │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Bson.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Bson.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Bson.assets.cache │ │ │ │ ├── MongoDB.Bson.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Bson.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Bson.dll │ │ │ │ ├── MongoDB.Bson.pdb │ │ │ │ ├── MongoDB.Bson.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── netcoreapp3.0 │ │ │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Bson.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Bson.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Bson.assets.cache │ │ │ │ ├── MongoDB.Bson.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Bson.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Bson.dll │ │ │ │ ├── MongoDB.Bson.pdb │ │ │ │ └── MongoDB.Bson.xml │ │ │ ├── MongoDB.Bson.csproj.nuget.cache │ │ │ ├── MongoDB.Bson.csproj.nuget.dgspec.json │ │ │ ├── MongoDB.Bson.csproj.nuget.g.props │ │ │ ├── MongoDB.Bson.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── MongoDB.Driver.Core │ │ ├── BatchTransformingAsyncCursor.cs │ │ ├── ChangeStreamDocument.cs │ │ ├── ChangeStreamDocumentCollectionNamespaceSerializer.cs │ │ ├── ChangeStreamDocumentSerializer.cs │ │ ├── ChangeStreamFullDocumentOptions.cs │ │ ├── ChangeStreamOperationType.cs │ │ ├── ChangeStreamOperationTypeSerializer.cs │ │ ├── ChangeStreamUpdateDescription.cs │ │ ├── ChangeStreamUpdateDescriptionSerializer.cs │ │ ├── Collation.cs │ │ ├── CollectionNamespace.cs │ │ ├── Core │ │ │ ├── Async │ │ │ │ └── AsyncQueue.cs │ │ │ ├── Authentication │ │ │ │ ├── AuthenticationHelper.cs │ │ │ │ ├── DefaultAuthenticator.cs │ │ │ │ ├── GssapiAuthenticator.cs │ │ │ │ ├── IAuthenticator.cs │ │ │ │ ├── MongoDBCRAuthenticator.cs │ │ │ │ ├── MongoDBX509Authenticator.cs │ │ │ │ ├── PlainAuthenticator.cs │ │ │ │ ├── SaslAuthenticator.cs │ │ │ │ ├── SaslMapParser.cs │ │ │ │ ├── SaslPrepHelper.cs │ │ │ │ ├── ScramSha1Authenticator.cs │ │ │ │ ├── ScramSha256Authenticator.cs │ │ │ │ ├── ScramShaAuthenticator.cs │ │ │ │ ├── Sspi │ │ │ │ │ ├── AuthIdentity.cs │ │ │ │ │ ├── AuthIdentityFlag.cs │ │ │ │ │ ├── DataRepresentation.cs │ │ │ │ │ ├── EncryptQualityOfProtection.cs │ │ │ │ │ ├── NativeMethods.cs │ │ │ │ │ ├── QueryContextAttribute.cs │ │ │ │ │ ├── SecurityBuffer.cs │ │ │ │ │ ├── SecurityBufferDescriptor.cs │ │ │ │ │ ├── SecurityBufferType.cs │ │ │ │ │ ├── SecurityContext.cs │ │ │ │ │ ├── SecurityCredential.cs │ │ │ │ │ ├── SecurityCredentialUse.cs │ │ │ │ │ ├── SecurityPackageContextSizes.cs │ │ │ │ │ ├── SecurityPackageInfo.cs │ │ │ │ │ ├── SspiContextFlags.cs │ │ │ │ │ ├── SspiHandle.cs │ │ │ │ │ ├── SspiPackage.cs │ │ │ │ │ └── Win32Exception.cs │ │ │ │ ├── UsernamePasswordCredential.cs │ │ │ │ └── Vendored │ │ │ │ │ ├── CryptographyHelpers.cs │ │ │ │ │ ├── HashAlgorithmName.cs │ │ │ │ │ └── Rfc2898DeriveBytes.cs │ │ │ ├── Bindings │ │ │ │ ├── ChannelChannelSource.cs │ │ │ │ ├── ChannelReadBinding.cs │ │ │ │ ├── ChannelReadWriteBinding.cs │ │ │ │ ├── ChannelSourceHandle.cs │ │ │ │ ├── ChannelSourceReadWriteBinding.cs │ │ │ │ ├── CoreServerSession.cs │ │ │ │ ├── CoreServerSessionPool.cs │ │ │ │ ├── CoreSession.cs │ │ │ │ ├── CoreSessionHandle.cs │ │ │ │ ├── CoreSessionOptions.cs │ │ │ │ ├── CoreTransaction.cs │ │ │ │ ├── CoreTransactionState.cs │ │ │ │ ├── IBinding.cs │ │ │ │ ├── IChannel.cs │ │ │ │ ├── IChannelSource.cs │ │ │ │ ├── ICoreServerSessionPool.cs │ │ │ │ ├── ICoreServerSesssion.cs │ │ │ │ ├── ICoreSession.cs │ │ │ │ ├── NoCoreServerSession.cs │ │ │ │ ├── NoCoreSession.cs │ │ │ │ ├── NonDisposingCoreSessionHandle.cs │ │ │ │ ├── ReadBindingHandle.cs │ │ │ │ ├── ReadPreferenceBinding.cs │ │ │ │ ├── ReadWriteBindingHandle.cs │ │ │ │ ├── ReferenceCountedCoreSession.cs │ │ │ │ ├── ServerChannelSource.cs │ │ │ │ ├── SingleServerReadBinding.cs │ │ │ │ ├── SingleServerReadWriteBinding.cs │ │ │ │ ├── SplitReadWriteBinding.cs │ │ │ │ ├── WrappingCoreServerSession.cs │ │ │ │ ├── WrappingCoreSession.cs │ │ │ │ └── WritableServerBinding.cs │ │ │ ├── Clusters │ │ │ │ ├── Cluster.cs │ │ │ │ ├── ClusterClock.cs │ │ │ │ ├── ClusterConnectionMode.cs │ │ │ │ ├── ClusterDescription.cs │ │ │ │ ├── ClusterDescriptionChangedEventArgs.cs │ │ │ │ ├── ClusterFactory.cs │ │ │ │ ├── ClusterId.cs │ │ │ │ ├── ClusterState.cs │ │ │ │ ├── ClusterType.cs │ │ │ │ ├── ElectionId.cs │ │ │ │ ├── ICluster.cs │ │ │ │ ├── IClusterClock.cs │ │ │ │ ├── IClusterFactory.cs │ │ │ │ ├── MultiServerCluster.cs │ │ │ │ ├── ReplicaSetConfig.cs │ │ │ │ ├── ServerSelectors │ │ │ │ │ ├── CompositeServerSelector.cs │ │ │ │ │ ├── DelegateServerSelector.cs │ │ │ │ │ ├── EndPointServerSelector.cs │ │ │ │ │ ├── IServerSelector.cs │ │ │ │ │ ├── LatencyLimitingServerSelector.cs │ │ │ │ │ ├── RandomServerSelector.cs │ │ │ │ │ ├── ReadPreferenceServerSelector.cs │ │ │ │ │ └── WritableServerSelector.cs │ │ │ │ └── SingleServerCluster.cs │ │ │ ├── Configuration │ │ │ │ ├── ClusterBuilder.cs │ │ │ │ ├── ClusterBuilderExtensions.cs │ │ │ │ ├── ClusterSettings.cs │ │ │ │ ├── ConnectionPoolSettings.cs │ │ │ │ ├── ConnectionSettings.cs │ │ │ │ ├── ConnectionString.cs │ │ │ │ ├── SdamLoggingSettings.cs │ │ │ │ ├── ServerSettings.cs │ │ │ │ ├── SslStreamSettings.cs │ │ │ │ └── TcpStreamSettings.cs │ │ │ ├── ConnectionPools │ │ │ │ ├── ExclusiveConnectionPool.cs │ │ │ │ ├── ExclusiveConnectionPoolFactory.cs │ │ │ │ ├── IConnectionPool.cs │ │ │ │ └── IConnectionPoolFactory.cs │ │ │ ├── Connections │ │ │ │ ├── BinaryConnection.cs │ │ │ │ ├── BinaryConnectionFactory.cs │ │ │ │ ├── BuildInfoResult.cs │ │ │ │ ├── ClientDocumentHelper.cs │ │ │ │ ├── CommandEventHelper.cs │ │ │ │ ├── ConnectionDescription.cs │ │ │ │ ├── ConnectionExtensions.cs │ │ │ │ ├── ConnectionId.cs │ │ │ │ ├── ConnectionInitializer.cs │ │ │ │ ├── IConnection.cs │ │ │ │ ├── IConnectionFactory.cs │ │ │ │ ├── IConnectionInitializer.cs │ │ │ │ ├── IStreamFactory.cs │ │ │ │ ├── IsMasterHelper.cs │ │ │ │ ├── IsMasterResult.cs │ │ │ │ ├── KeepAliveValues.cs │ │ │ │ ├── SslStreamFactory.cs │ │ │ │ └── TcpStreamFactory.cs │ │ │ ├── Events │ │ │ │ ├── ClusterAddedServerEvent.cs │ │ │ │ ├── ClusterAddingServerEvent.cs │ │ │ │ ├── ClusterClosedEvent.cs │ │ │ │ ├── ClusterClosingEvent.cs │ │ │ │ ├── ClusterDescriptionChangedEvent.cs │ │ │ │ ├── ClusterOpenedEvent.cs │ │ │ │ ├── ClusterOpeningEvent.cs │ │ │ │ ├── ClusterRemovedServerEvent.cs │ │ │ │ ├── ClusterRemovingServerEvent.cs │ │ │ │ ├── ClusterSelectedServerEvent.cs │ │ │ │ ├── ClusterSelectingServerEvent.cs │ │ │ │ ├── ClusterSelectingServerFailedEvent.cs │ │ │ │ ├── CommandFailedEvent.cs │ │ │ │ ├── CommandStartedEvent.cs │ │ │ │ ├── CommandSucceededEvent.cs │ │ │ │ ├── ConnectionClosedEvent.cs │ │ │ │ ├── ConnectionClosingEvent.cs │ │ │ │ ├── ConnectionFailedEvent.cs │ │ │ │ ├── ConnectionOpenedEvent.cs │ │ │ │ ├── ConnectionOpeningEvent.cs │ │ │ │ ├── ConnectionOpeningFailedEvent.cs │ │ │ │ ├── ConnectionPoolAddedConnectionEvent.cs │ │ │ │ ├── ConnectionPoolAddingConnectionEvent.cs │ │ │ │ ├── ConnectionPoolCheckedInConnectionEvent.cs │ │ │ │ ├── ConnectionPoolCheckedOutConnectionEvent.cs │ │ │ │ ├── ConnectionPoolCheckingInConnectionEvent.cs │ │ │ │ ├── ConnectionPoolCheckingOutConnectionEvent.cs │ │ │ │ ├── ConnectionPoolCheckingOutConnectionFailedEvent.cs │ │ │ │ ├── ConnectionPoolClosedEvent.cs │ │ │ │ ├── ConnectionPoolClosingEvent.cs │ │ │ │ ├── ConnectionPoolOpenedEvent.cs │ │ │ │ ├── ConnectionPoolOpeningEvent.cs │ │ │ │ ├── ConnectionPoolRemovedConnectionEvent.cs │ │ │ │ ├── ConnectionPoolRemovingConnectionEvent.cs │ │ │ │ ├── ConnectionReceivedMessageEvent.cs │ │ │ │ ├── ConnectionReceivingMessageEvent.cs │ │ │ │ ├── ConnectionReceivingMessageFailedEvent.cs │ │ │ │ ├── ConnectionSendingMessagesEvent.cs │ │ │ │ ├── ConnectionSendingMessagesFailedEvent.cs │ │ │ │ ├── ConnectionSentMessagesEvent.cs │ │ │ │ ├── Diagnostics │ │ │ │ │ ├── PerformanceCounterEventSubscriber.cs │ │ │ │ │ ├── PerformanceCounters │ │ │ │ │ │ ├── ConnectionPerformanceRecorder.cs │ │ │ │ │ │ ├── ConnectionPoolPerformanceRecorder.cs │ │ │ │ │ │ ├── PerformanceCounterAttribute.cs │ │ │ │ │ │ └── PerformanceCounterPackage.cs │ │ │ │ │ ├── TraceSourceCommandEventSubscriber.cs │ │ │ │ │ ├── TraceSourceEventHelper.cs │ │ │ │ │ ├── TraceSourceEventSubscriber.cs │ │ │ │ │ └── TraceSourceSdamEventSubscriber.cs │ │ │ │ ├── EventAggregator.cs │ │ │ │ ├── EventContext.cs │ │ │ │ ├── IEventSubscriber.cs │ │ │ │ ├── ReflectionEventSubscriber.cs │ │ │ │ ├── SdamInformationEvent.cs │ │ │ │ ├── ServerClosedEvent.cs │ │ │ │ ├── ServerClosingEvent.cs │ │ │ │ ├── ServerDescriptionChangedEvent.cs │ │ │ │ ├── ServerHeartbeatFailedEvent.cs │ │ │ │ ├── ServerHeartbeatStartedEvent.cs │ │ │ │ ├── ServerHeartbeatSucceededEvent.cs │ │ │ │ ├── ServerOpenedEvent.cs │ │ │ │ ├── ServerOpeningEvent.cs │ │ │ │ └── SingleEventSubscriber.cs │ │ │ ├── Misc │ │ │ │ ├── ArrayFiltersFeature.cs │ │ │ │ ├── BatchableSource.cs │ │ │ │ ├── CachedEnumerable.cs │ │ │ │ ├── CollationFeature.cs │ │ │ │ ├── CommandsThatWriteAcceptWriteConcernFeature.cs │ │ │ │ ├── DefaultRandomStringGenerator.cs │ │ │ │ ├── EndPointHelper.cs │ │ │ │ ├── Ensure.cs │ │ │ │ ├── ExceptionMapper.cs │ │ │ │ ├── ExponentiallyWeightedMovingAverage.cs │ │ │ │ ├── Feature.cs │ │ │ │ ├── FixedCountBatchableSourceSerializer.cs │ │ │ │ ├── IBatchableSource.cs │ │ │ │ ├── IClock.cs │ │ │ │ ├── IRandomStringGenerator.cs │ │ │ │ ├── IdGenerator.cs │ │ │ │ ├── IndexMap.cs │ │ │ │ ├── InterlockedInt32.cs │ │ │ │ ├── Metronome.cs │ │ │ │ ├── Range.cs │ │ │ │ ├── ReadAheadEnumerable.cs │ │ │ │ ├── ReadConcernFeature.cs │ │ │ │ ├── ReferenceCounted.cs │ │ │ │ ├── SemanticVersion.cs │ │ │ │ ├── SemaphoreSlimRequest.cs │ │ │ │ ├── SizeLimitingBatchableSourceSerializer.cs │ │ │ │ ├── StreamExtensionMethods.cs │ │ │ │ ├── StringBuilderExtensionMethods.cs │ │ │ │ ├── SystemClock.cs │ │ │ │ ├── TaskExtensions.cs │ │ │ │ ├── ThreadStaticRandom.cs │ │ │ │ ├── TimeSpanParser.cs │ │ │ │ └── ToStringComparer.cs │ │ │ ├── Operations │ │ │ │ ├── AggregateExplainOperation.cs │ │ │ │ ├── AggregateOperation.cs │ │ │ │ ├── AggregateToCollectionOperation.cs │ │ │ │ ├── AsyncCursor.cs │ │ │ │ ├── AsyncCursorEnumerableOneTimeAdapter.cs │ │ │ │ ├── AsyncCursorEnumerator.cs │ │ │ │ ├── AsyncCursorSourceEnumerableAdapter.cs │ │ │ │ ├── BulkDeleteOperation.cs │ │ │ │ ├── BulkDeleteOperationEmulator.cs │ │ │ │ ├── BulkInsertOperation.cs │ │ │ │ ├── BulkInsertOperationEmulator.cs │ │ │ │ ├── BulkMixedWriteOperation.cs │ │ │ │ ├── BulkUnmixedWriteOperationBase.cs │ │ │ │ ├── BulkUnmixedWriteOperationEmulatorBase.cs │ │ │ │ ├── BulkUpdateOperation.cs │ │ │ │ ├── BulkUpdateOperationEmulator.cs │ │ │ │ ├── BulkWriteBatchResult.cs │ │ │ │ ├── BulkWriteBatchResultCombiner.cs │ │ │ │ ├── BulkWriteConcernError.cs │ │ │ │ ├── BulkWriteOperationError.cs │ │ │ │ ├── BulkWriteOperationResult.cs │ │ │ │ ├── BulkWriteOperationResultConverter.cs │ │ │ │ ├── BulkWriteOperationUpsert.cs │ │ │ │ ├── ChangeStreamCursor.cs │ │ │ │ ├── ChangeStreamOperation.cs │ │ │ │ ├── CommandOperationBase.cs │ │ │ │ ├── CountDocumentsOperation.cs │ │ │ │ ├── CountOperation.cs │ │ │ │ ├── CreateCollectionOperation.cs │ │ │ │ ├── CreateIndexRequest.cs │ │ │ │ ├── CreateIndexesOperation.cs │ │ │ │ ├── CreateIndexesUsingCommandOperation.cs │ │ │ │ ├── CreateIndexesUsingInsertOperation.cs │ │ │ │ ├── CreateViewOperation.cs │ │ │ │ ├── CursorBatchDeserializationHelper.cs │ │ │ │ ├── CursorType.cs │ │ │ │ ├── DatabaseExistsOperation.cs │ │ │ │ ├── DelayedEvaluationWriteConcernSerializer.cs │ │ │ │ ├── DeleteOpcodeOperation.cs │ │ │ │ ├── DeleteOpcodeOperationEmulator.cs │ │ │ │ ├── DeleteRequest.cs │ │ │ │ ├── DistinctOperation.cs │ │ │ │ ├── DropCollectionOperation.cs │ │ │ │ ├── DropDatabaseOperation.cs │ │ │ │ ├── DropIndexOperation.cs │ │ │ │ ├── ElementDeserializer.cs │ │ │ │ ├── ElementNameValidators │ │ │ │ │ ├── CollectionElementNameValidator.cs │ │ │ │ │ ├── ElementNameValidatorFactory.cs │ │ │ │ │ ├── UpdateElementNameValidator.cs │ │ │ │ │ └── UpdateOrReplacementElementNameValidator.cs │ │ │ │ ├── EndTransactionOperation.cs │ │ │ │ ├── EvalOperation.cs │ │ │ │ ├── ExplainOperation.cs │ │ │ │ ├── ExplainVerbosity.cs │ │ │ │ ├── FindAndModifyOperationBase.cs │ │ │ │ ├── FindAndModifyValueDeserializer.cs │ │ │ │ ├── FindCommandOperation.cs │ │ │ │ ├── FindOneAndDeleteOperation.cs │ │ │ │ ├── FindOneAndReplaceOperation.cs │ │ │ │ ├── FindOneAndUpdateOperation.cs │ │ │ │ ├── FindOpcodeOperation.cs │ │ │ │ ├── FindOperation.cs │ │ │ │ ├── GeoNearOperation.cs │ │ │ │ ├── GeoSearchOperation.cs │ │ │ │ ├── GroupOperation.cs │ │ │ │ ├── IOperation.cs │ │ │ │ ├── IOperationClock.cs │ │ │ │ ├── IRetryableOperation.cs │ │ │ │ ├── IndexNameHelper.cs │ │ │ │ ├── InsertOpcodeOperation.cs │ │ │ │ ├── InsertOpcodeOperationEmulator.cs │ │ │ │ ├── InsertRequest.cs │ │ │ │ ├── ListCollectionsOperation.cs │ │ │ │ ├── ListCollectionsUsingCommandOperation.cs │ │ │ │ ├── ListCollectionsUsingQueryOperation.cs │ │ │ │ ├── ListDatabasesOperation.cs │ │ │ │ ├── ListIndexesOperation.cs │ │ │ │ ├── ListIndexesUsingCommandOperation.cs │ │ │ │ ├── ListIndexesUsingQueryOperation.cs │ │ │ │ ├── MapReduceLegacyOperation.cs │ │ │ │ ├── MapReduceOperation.cs │ │ │ │ ├── MapReduceOperationBase.cs │ │ │ │ ├── MapReduceOutputMode.cs │ │ │ │ ├── MapReduceOutputToCollectionOperation.cs │ │ │ │ ├── MongoBulkWriteOperationException.cs │ │ │ │ ├── OperationClock.cs │ │ │ │ ├── OperationExtensionMethods.cs │ │ │ │ ├── ParallelScanOperation.cs │ │ │ │ ├── PingOperation.cs │ │ │ │ ├── QueryHelper.cs │ │ │ │ ├── ReIndexOperation.cs │ │ │ │ ├── ReadCommandOperation.cs │ │ │ │ ├── ReadConcernHelper.cs │ │ │ │ ├── RenameCollectionOperation.cs │ │ │ │ ├── RetryabilityHelper.cs │ │ │ │ ├── RetryableDeleteCommandOperation.cs │ │ │ │ ├── RetryableInsertCommandOperation.cs │ │ │ │ ├── RetryableUpdateCommandOperation.cs │ │ │ │ ├── RetryableWriteCommandOperationBase.cs │ │ │ │ ├── RetryableWriteContext.cs │ │ │ │ ├── RetryableWriteOperationExecutor.cs │ │ │ │ ├── ReturnDocument.cs │ │ │ │ ├── UpdateOpcodeOperation.cs │ │ │ │ ├── UpdateOpcodeOperationEmulator.cs │ │ │ │ ├── UpdateRequest.cs │ │ │ │ ├── UpdateType.cs │ │ │ │ ├── WriteCommandOperation.cs │ │ │ │ ├── WriteConcernHelper.cs │ │ │ │ ├── WriteRequest.cs │ │ │ │ └── WriteRequestType.cs │ │ │ ├── Servers │ │ │ │ ├── ClusterClockAdvancingCoreSession.cs │ │ │ │ ├── HeartbeatDelay.cs │ │ │ │ ├── IClusterableServerFactory.cs │ │ │ │ ├── IServer.cs │ │ │ │ ├── IServerMonitor.cs │ │ │ │ ├── IServerMonitorFactory.cs │ │ │ │ ├── Server.cs │ │ │ │ ├── ServerDescription.cs │ │ │ │ ├── ServerDescriptionChangedEventArgs.cs │ │ │ │ ├── ServerFactory.cs │ │ │ │ ├── ServerId.cs │ │ │ │ ├── ServerMonitor.cs │ │ │ │ ├── ServerMonitorFactory.cs │ │ │ │ ├── ServerState.cs │ │ │ │ └── ServerType.cs │ │ │ └── WireProtocol │ │ │ │ ├── CommandResponseHandling.cs │ │ │ │ ├── CommandUsingCommandMessageWireProtocol.cs │ │ │ │ ├── CommandUsingQueryMessageWireProtocol.cs │ │ │ │ ├── CommandWireProtocol.cs │ │ │ │ ├── CursorBatch.cs │ │ │ │ ├── DeleteWireProtocol.cs │ │ │ │ ├── GetMoreWireProtocol.cs │ │ │ │ ├── IWireProtocol.cs │ │ │ │ ├── InsertWireProtocol.cs │ │ │ │ ├── KillCursorsWireProtocol.cs │ │ │ │ ├── Messages │ │ │ │ ├── CommandMessage.cs │ │ │ │ ├── CommandMessageDisposer.cs │ │ │ │ ├── CommandMessageSection.cs │ │ │ │ ├── CommandRequestMessage.cs │ │ │ │ ├── CommandResponseMessage.cs │ │ │ │ ├── DeleteMessage.cs │ │ │ │ ├── Encoders │ │ │ │ │ ├── BinaryEncoders │ │ │ │ │ │ ├── BinaryMessageEncoderFactory.cs │ │ │ │ │ │ ├── CommandMessageBinaryEncoder.cs │ │ │ │ │ │ ├── CommandRequestMessageBinaryEncoder.cs │ │ │ │ │ │ ├── CommandResponseMessageBinaryEncoder.cs │ │ │ │ │ │ ├── DeleteMessageBinaryEncoder.cs │ │ │ │ │ │ ├── GetMoreMessageBinaryEncoder.cs │ │ │ │ │ │ ├── InsertMessageBinaryEncoder.cs │ │ │ │ │ │ ├── KillCursorsMessageBinaryEncoder.cs │ │ │ │ │ │ ├── MessageBinaryEncoderBase.cs │ │ │ │ │ │ ├── OpMsgFlags.cs │ │ │ │ │ │ ├── Opcode.cs │ │ │ │ │ │ ├── QueryMessageBinaryEncoder.cs │ │ │ │ │ │ ├── ReplyMessageBinaryEncoder.cs │ │ │ │ │ │ └── UpdateMessageBinaryEncoder.cs │ │ │ │ │ ├── CommandResponseMessageEncoderSelector.cs │ │ │ │ │ ├── IEncodableMessage.cs │ │ │ │ │ ├── IMessageEncoder.cs │ │ │ │ │ ├── IMessageEncoderFactory.cs │ │ │ │ │ ├── IMessageEncoderPostProcessor.cs │ │ │ │ │ ├── IMessageEncoderSelector.cs │ │ │ │ │ ├── JsonEncoders │ │ │ │ │ │ ├── CommandMessageJsonEncoder.cs │ │ │ │ │ │ ├── CommandRequestMessageJsonEncoder.cs │ │ │ │ │ │ ├── CommandResponseMessageJsonEncoder.cs │ │ │ │ │ │ ├── DeleteMessageJsonEncoder.cs │ │ │ │ │ │ ├── GetMoreMessageJsonEncoder.cs │ │ │ │ │ │ ├── InsertMessageJsonEncoder.cs │ │ │ │ │ │ ├── JsonMessageEncoderFactory.cs │ │ │ │ │ │ ├── KillCursorsMessageJsonEncoder.cs │ │ │ │ │ │ ├── MessageJsonEncoderBase.cs │ │ │ │ │ │ ├── QueryMessageJsonEncoder.cs │ │ │ │ │ │ ├── ReplyMessageJsonEncoder.cs │ │ │ │ │ │ └── UpdateMessageJsonEncoder.cs │ │ │ │ │ ├── MessageEncoderSettings.cs │ │ │ │ │ └── ReplyMessageEncoderSelector.cs │ │ │ │ ├── GetMoreMessage.cs │ │ │ │ ├── InsertMessage.cs │ │ │ │ ├── KillCursorsMessage.cs │ │ │ │ ├── MongoDBMessage.cs │ │ │ │ ├── MongoDBMessageType.cs │ │ │ │ ├── QueryMessage.cs │ │ │ │ ├── ReplyMessage.cs │ │ │ │ ├── RequestMessage.cs │ │ │ │ ├── ResponseMessage.cs │ │ │ │ └── UpdateMessage.cs │ │ │ │ ├── QueryWireProtocol.cs │ │ │ │ ├── UpdateWireProtocol.cs │ │ │ │ └── WriteWireProtocolBase.cs │ │ ├── DatabaseNamespace.cs │ │ ├── DeferredAsyncCursor.cs │ │ ├── DocumentValidationAction.cs │ │ ├── DocumentValidationLevel.cs │ │ ├── IAsyncCursor.cs │ │ ├── IAsyncCursorSource.cs │ │ ├── MongoAuthenticationException.cs │ │ ├── MongoClientException.cs │ │ ├── MongoCommandException.cs │ │ ├── MongoConfigurationException.cs │ │ ├── MongoConnectionClosedException.cs │ │ ├── MongoConnectionException.cs │ │ ├── MongoCursorNotFoundException.cs │ │ ├── MongoDB.Driver.Core.csproj │ │ ├── MongoDuplicateKeyException.cs │ │ ├── MongoException.cs │ │ ├── MongoExecutionTimeoutException.cs │ │ ├── MongoIncompatibleDriverException.cs │ │ ├── MongoInternalException.cs │ │ ├── MongoNodeIsRecoveringException.cs │ │ ├── MongoNotPrimaryException.cs │ │ ├── MongoQueryException.cs │ │ ├── MongoServerException.cs │ │ ├── MongoWaitQueueFullException.cs │ │ ├── MongoWriteConcernException.cs │ │ ├── Optional.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReadConcern.cs │ │ ├── ReadConcernLevel.cs │ │ ├── ReadPreference.cs │ │ ├── ReadPreferenceMode.cs │ │ ├── ServerErrorCategory.cs │ │ ├── ServerErrorCode.cs │ │ ├── SingleBatchAsyncCursor.cs │ │ ├── Tag.cs │ │ ├── TagSet.cs │ │ ├── TransactionOptions.cs │ │ ├── WriteConcern.cs │ │ ├── WriteConcernResult.cs │ │ └── obj │ │ │ ├── Debug │ │ │ ├── netcoreapp2.1 │ │ │ │ ├── MongoDB.Driver.Core.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.Core.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.Core.assets.cache │ │ │ │ ├── MongoDB.Driver.Core.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.Core.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.Core.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.Core.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.Core.dll │ │ │ │ ├── MongoDB.Driver.Core.pdb │ │ │ │ ├── MongoDB.Driver.Core.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── netcoreapp2.2 │ │ │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Driver.Core.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.Core.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.Core.assets.cache │ │ │ │ ├── MongoDB.Driver.Core.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.Core.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.Core.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.Core.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.Core.dll │ │ │ │ ├── MongoDB.Driver.Core.pdb │ │ │ │ ├── MongoDB.Driver.Core.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── netcoreapp3.0 │ │ │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Driver.Core.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.Core.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.Core.assets.cache │ │ │ │ ├── MongoDB.Driver.Core.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.Core.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.Core.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.Core.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.Core.dll │ │ │ │ ├── MongoDB.Driver.Core.pdb │ │ │ │ └── MongoDB.Driver.Core.xml │ │ │ ├── MongoDB.Driver.Core.csproj.nuget.cache │ │ │ ├── MongoDB.Driver.Core.csproj.nuget.dgspec.json │ │ │ ├── MongoDB.Driver.Core.csproj.nuget.g.props │ │ │ ├── MongoDB.Driver.Core.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── MongoDB.Driver.GridFS │ │ ├── DelegatingStream.cs │ │ ├── GridFSBucket.cs │ │ ├── GridFSBucketCompat.cs │ │ ├── GridFSBucketOptions.cs │ │ ├── GridFSChunkException.cs │ │ ├── GridFSDownloadByNameOptions.cs │ │ ├── GridFSDownloadOptions.cs │ │ ├── GridFSDownloadStream.cs │ │ ├── GridFSDownloadStreamBase.cs │ │ ├── GridFSDownloadStreamCompat.cs │ │ ├── GridFSException.cs │ │ ├── GridFSFileInfo.cs │ │ ├── GridFSFileInfoCompat.cs │ │ ├── GridFSFileInfoSerializer.cs │ │ ├── GridFSFileInfoSerializerCompat.cs │ │ ├── GridFSFileNotFoundException.cs │ │ ├── GridFSFindOptions.cs │ │ ├── GridFSFindOptionsCompat.cs │ │ ├── GridFSForwardOnlyDownloadStream.cs │ │ ├── GridFSForwardOnlyUploadStream.cs │ │ ├── GridFSMD5Exception.cs │ │ ├── GridFSSeekableDownloadStream.cs │ │ ├── GridFSUploadOptions.cs │ │ ├── GridFSUploadStream.cs │ │ ├── GridFSUploadStreamCompat.cs │ │ ├── IGridFSBucket.cs │ │ ├── IGridFSBucketCompat.cs │ │ ├── IGridFSBucketExtensions.cs │ │ ├── IGridFSFileInfoSerializer.cs │ │ ├── MongoDB.Driver.GridFS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── StreamExtensions.cs │ │ └── obj │ │ │ ├── Debug │ │ │ ├── netcoreapp2.1 │ │ │ │ ├── MongoDB.Driver.GridFS.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.GridFS.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.GridFS.assets.cache │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.GridFS.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.GridFS.dll │ │ │ │ ├── MongoDB.Driver.GridFS.pdb │ │ │ │ ├── MongoDB.Driver.GridFS.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── netcoreapp2.2 │ │ │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Driver.GridFS.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.GridFS.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.GridFS.assets.cache │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.GridFS.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.GridFS.dll │ │ │ │ ├── MongoDB.Driver.GridFS.pdb │ │ │ │ ├── MongoDB.Driver.GridFS.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── netcoreapp3.0 │ │ │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Driver.GridFS.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.GridFS.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.GridFS.assets.cache │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.GridFS.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.GridFS.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.GridFS.dll │ │ │ │ ├── MongoDB.Driver.GridFS.pdb │ │ │ │ └── MongoDB.Driver.GridFS.xml │ │ │ ├── MongoDB.Driver.GridFS.csproj.nuget.cache │ │ │ ├── MongoDB.Driver.GridFS.csproj.nuget.dgspec.json │ │ │ ├── MongoDB.Driver.GridFS.csproj.nuget.g.props │ │ │ ├── MongoDB.Driver.GridFS.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── MongoDB.Driver │ │ ├── AggregateBucketAutoGranularity.cs │ │ ├── AggregateBucketAutoOptions.cs │ │ ├── AggregateBucketAutoResult.cs │ │ ├── AggregateBucketAutoResultId.cs │ │ ├── AggregateBucketOptions.cs │ │ ├── AggregateBucketResult.cs │ │ ├── AggregateCountResult.cs │ │ ├── AggregateExpressionDefinition.cs │ │ ├── AggregateFacet.cs │ │ ├── AggregateFacetOptions.cs │ │ ├── AggregateFacetResult.cs │ │ ├── AggregateFacetResults.cs │ │ ├── AggregateFluent.cs │ │ ├── AggregateFluentBase.cs │ │ ├── AggregateGraphLookupOptions.cs │ │ ├── AggregateLookupOptions.cs │ │ ├── AggregateOptions.cs │ │ ├── AggregateSortByCountResult.cs │ │ ├── AggregateStringTranslationMode.cs │ │ ├── AggregateUnwindOptions.cs │ │ ├── ArrayFilterDefinition.cs │ │ ├── AsyncCursorHelper.cs │ │ ├── Builders.cs │ │ ├── BulkWriteError.cs │ │ ├── BulkWriteOptions.cs │ │ ├── BulkWriteResult.cs │ │ ├── BulkWriteUpsert.cs │ │ ├── ChangeStreamHelper.cs │ │ ├── ChangeStreamOptions.cs │ │ ├── ChangeStreamStageOptions.cs │ │ ├── ClientSessionHandle.cs │ │ ├── ClientSessionOptions.cs │ │ ├── ClusterKey.cs │ │ ├── ClusterRegistry.cs │ │ ├── Command.cs │ │ ├── ConnectionMode.cs │ │ ├── CountOptions.cs │ │ ├── CreateCollectionOptions.cs │ │ ├── CreateIndexModel.cs │ │ ├── CreateIndexOptions.cs │ │ ├── CreateManyIndexesOptions.cs │ │ ├── CreateOneIndexOptions.cs │ │ ├── CreateViewOptions.cs │ │ ├── CursorType.cs │ │ ├── DecryptedSecureString.cs │ │ ├── DeleteManyModel.cs │ │ ├── DeleteOneModel.cs │ │ ├── DeleteOptions.cs │ │ ├── DeleteResult.cs │ │ ├── DistinctOptions.cs │ │ ├── DropIndexOptions.cs │ │ ├── EstimatedDocumentCountOptions.cs │ │ ├── ExpressionTranslationOptions.cs │ │ ├── ExternalEvidence.cs │ │ ├── FieldDefinition.cs │ │ ├── FieldValueSerializerHelper.cs │ │ ├── FilterDefinition.cs │ │ ├── FilterDefinitionBuilder.cs │ │ ├── FilteredMongoCollectionBase.cs │ │ ├── FindFluent.cs │ │ ├── FindFluentBase.cs │ │ ├── FindOneAndDeleteOptions.cs │ │ ├── FindOneAndReplaceOptions.cs │ │ ├── FindOneAndUpdateOptions.cs │ │ ├── FindOptions.cs │ │ ├── GeoJsonObjectModel │ │ │ ├── GeoJson.cs │ │ │ ├── GeoJson2DCoordinates.cs │ │ │ ├── GeoJson2DGeographicCoordinates.cs │ │ │ ├── GeoJson2DProjectedCoordinates.cs │ │ │ ├── GeoJson3DCoordinates.cs │ │ │ ├── GeoJson3DGeographicCoordinates.cs │ │ │ ├── GeoJson3DProjectedCoordinates.cs │ │ │ ├── GeoJsonBoundingBox.cs │ │ │ ├── GeoJsonCoordinateReferenceSystem.cs │ │ │ ├── GeoJsonCoordinates.cs │ │ │ ├── GeoJsonFeature.cs │ │ │ ├── GeoJsonFeatureArgs.cs │ │ │ ├── GeoJsonFeatureCollection.cs │ │ │ ├── GeoJsonGeometry.cs │ │ │ ├── GeoJsonGeometryCollection.cs │ │ │ ├── GeoJsonLineString.cs │ │ │ ├── GeoJsonLineStringCoordinates.cs │ │ │ ├── GeoJsonLinearRingCoordinates.cs │ │ │ ├── GeoJsonLinkedCoordinateReferenceSystem.cs │ │ │ ├── GeoJsonMultiLineString.cs │ │ │ ├── GeoJsonMultiLineStringCoordinates.cs │ │ │ ├── GeoJsonMultiPoint.cs │ │ │ ├── GeoJsonMultiPointCoordinates.cs │ │ │ ├── GeoJsonMultiPolygon.cs │ │ │ ├── GeoJsonMultiPolygonCoordinates.cs │ │ │ ├── GeoJsonNamedCoordinateReferenceSystem.cs │ │ │ ├── GeoJsonObject.cs │ │ │ ├── GeoJsonObjectArgs.cs │ │ │ ├── GeoJsonObjectType.cs │ │ │ ├── GeoJsonPoint.cs │ │ │ ├── GeoJsonPolygon.cs │ │ │ ├── GeoJsonPolygonCoordinates.cs │ │ │ └── Serializers │ │ │ │ ├── GeoJson2DCoordinatesSerializer.cs │ │ │ │ ├── GeoJson2DGeographicCoordinatesSerializer.cs │ │ │ │ ├── GeoJson2DProjectedCoordinatesSerializer.cs │ │ │ │ ├── GeoJson3DCoordinatesSerializer.cs │ │ │ │ ├── GeoJson3DGeographicCoordinatesSerializer.cs │ │ │ │ ├── GeoJson3DProjectedCoordinatesSerializer.cs │ │ │ │ ├── GeoJsonBoundingBoxSerializer.cs │ │ │ │ ├── GeoJsonCoordinateReferenceSystemSerializer.cs │ │ │ │ ├── GeoJsonCoordinatesSerializer.cs │ │ │ │ ├── GeoJsonFeatureCollectionSerializer.cs │ │ │ │ ├── GeoJsonFeatureSerializer.cs │ │ │ │ ├── GeoJsonGeometryCollectionSerializer.cs │ │ │ │ ├── GeoJsonGeometrySerializer.cs │ │ │ │ ├── GeoJsonLineStringCoordinatesSerializer.cs │ │ │ │ ├── GeoJsonLineStringSerializer.cs │ │ │ │ ├── GeoJsonLinearRingCoordinatesSerializer.cs │ │ │ │ ├── GeoJsonLinkedCoordinateReferenceSystemSerializer.cs │ │ │ │ ├── GeoJsonMultiLineStringCoordinatesSerializer.cs │ │ │ │ ├── GeoJsonMultiLineStringSerializer.cs │ │ │ │ ├── GeoJsonMultiPointCoordinatesSerializer.cs │ │ │ │ ├── GeoJsonMultiPointSerializer.cs │ │ │ │ ├── GeoJsonMultiPolygonCoordinatesSerializer.cs │ │ │ │ ├── GeoJsonMultiPolygonSerializer.cs │ │ │ │ ├── GeoJsonNamedCoordinateReferenceSystemSerializer.cs │ │ │ │ ├── GeoJsonObjectSerializer.cs │ │ │ │ ├── GeoJsonObjectSerializerHelper.cs │ │ │ │ ├── GeoJsonPointSerializer.cs │ │ │ │ ├── GeoJsonPolygonCoordinatesSerializer.cs │ │ │ │ └── GeoJsonPolygonSerializer.cs │ │ ├── IAggregateFluent.cs │ │ ├── IAggregateFluentExtensions.cs │ │ ├── IClientSession.cs │ │ ├── IFilteredMongoCollection.cs │ │ ├── IFindFluent.cs │ │ ├── IFindFluentExtensions.cs │ │ ├── IInheritableMongoClientSettings.cs │ │ ├── IMongoClient.cs │ │ ├── IMongoClientExtensions.cs │ │ ├── IMongoCollection.cs │ │ ├── IMongoCollectionExtensions.cs │ │ ├── IMongoDatabase.cs │ │ ├── IMongoDatabaseExtensions.cs │ │ ├── IMongoIndexManager.cs │ │ ├── IOperationExecutor.cs │ │ ├── IServerSession.cs │ │ ├── IndexKeysDefinition.cs │ │ ├── IndexKeysDefinitionBuilder.cs │ │ ├── IndexOptionDefaults.cs │ │ ├── InsertManyOptions.cs │ │ ├── InsertOneModel.cs │ │ ├── InsertOneOptions.cs │ │ ├── Linq │ │ │ ├── AggregateQueryableExecutionModel.cs │ │ │ ├── ExecutionPlanBuilder.cs │ │ │ ├── ExpressionHelper.cs │ │ │ ├── Expressions │ │ │ │ ├── AccumulatorExpression.cs │ │ │ │ ├── AccumulatorType.cs │ │ │ │ ├── AggregateExpressionExpression.cs │ │ │ │ ├── ArrayIndexExpression.cs │ │ │ │ ├── CollectionExpression.cs │ │ │ │ ├── ConcatExpression.cs │ │ │ │ ├── CorrelatedExpression.cs │ │ │ │ ├── DefaultIfEmptyExpression.cs │ │ │ │ ├── DistinctExpression.cs │ │ │ │ ├── DocumentExpression.cs │ │ │ │ ├── ExceptExpression.cs │ │ │ │ ├── ExpressionComparer.cs │ │ │ │ ├── ExpressionReplacer.cs │ │ │ │ ├── ExtensionExpression.cs │ │ │ │ ├── ExtensionExpressionType.cs │ │ │ │ ├── ExtensionExpressionVisitor.cs │ │ │ │ ├── FieldAsDocumentExpression.cs │ │ │ │ ├── FieldExpression.cs │ │ │ │ ├── GroupByExpression.cs │ │ │ │ ├── GroupByWithResultSelectorExpression.cs │ │ │ │ ├── GroupJoinExpression.cs │ │ │ │ ├── GroupingKeyExpression.cs │ │ │ │ ├── IFieldExpression.cs │ │ │ │ ├── ISerializationExpression.cs │ │ │ │ ├── ISourcedExpression.cs │ │ │ │ ├── InjectedFilterExpression.cs │ │ │ │ ├── IntersectExpression.cs │ │ │ │ ├── JoinExpression.cs │ │ │ │ ├── OrderByClause.cs │ │ │ │ ├── OrderByExpression.cs │ │ │ │ ├── PipelineExpression.cs │ │ │ │ ├── ResultOperator.cs │ │ │ │ ├── ResultOperators │ │ │ │ │ ├── AggregateResultOperator.cs │ │ │ │ │ ├── AllResultOperator.cs │ │ │ │ │ ├── AnyResultOperator.cs │ │ │ │ │ ├── ArrayResultOperator.cs │ │ │ │ │ ├── AverageResultOperator.cs │ │ │ │ │ ├── ContainsResultOperator.cs │ │ │ │ │ ├── CountResultOperator.cs │ │ │ │ │ ├── FirstResultOperator.cs │ │ │ │ │ ├── HashSetResultOperator.cs │ │ │ │ │ ├── LastResultOperator.cs │ │ │ │ │ ├── ListResultOperator.cs │ │ │ │ │ ├── MaxResultOperator.cs │ │ │ │ │ ├── MinResultOperator.cs │ │ │ │ │ ├── ResultTransformerHelper.cs │ │ │ │ │ ├── SingleResultOperator.cs │ │ │ │ │ ├── StandardDeviationResultOperator.cs │ │ │ │ │ └── SumResultOperator.cs │ │ │ │ ├── ReverseExpression.cs │ │ │ │ ├── SampleExpression.cs │ │ │ │ ├── SelectExpression.cs │ │ │ │ ├── SelectManyExpression.cs │ │ │ │ ├── SerializationExpression.cs │ │ │ │ ├── SerializedValueExpression.cs │ │ │ │ ├── SkipExpression.cs │ │ │ │ ├── TakeExpression.cs │ │ │ │ ├── UnionExpression.cs │ │ │ │ ├── WhereExpression.cs │ │ │ │ └── ZipExpression.cs │ │ │ ├── FieldExpressionFlattener.cs │ │ │ ├── IMongoQueryProvider.cs │ │ │ ├── IMongoQueryable.cs │ │ │ ├── IResultTransformer.cs │ │ │ ├── LinqExtensions.cs │ │ │ ├── MethodHelper.cs │ │ │ ├── MongoEnumerable.cs │ │ │ ├── MongoQueryProviderImpl.cs │ │ │ ├── MongoQueryable.cs │ │ │ ├── MongoQueryableImpl.cs │ │ │ ├── Processors │ │ │ │ ├── AccumulatorBinder.cs │ │ │ │ ├── BinderHelper.cs │ │ │ │ ├── CompositeMethodCallBinder.cs │ │ │ │ ├── CorrelatedAccumulatorRemover.cs │ │ │ │ ├── CorrelatedGroupRewriter.cs │ │ │ │ ├── EmbeddedPipeline │ │ │ │ │ ├── EmbeddedPipelineBinder.cs │ │ │ │ │ ├── EmbeddedPipelineBindingContext.cs │ │ │ │ │ └── MethodCallBinders │ │ │ │ │ │ ├── AggregateBinder.cs │ │ │ │ │ │ ├── AllBinder.cs │ │ │ │ │ │ ├── AnyBinder.cs │ │ │ │ │ │ ├── AsQueryableBinder.cs │ │ │ │ │ │ ├── AverageBinder.cs │ │ │ │ │ │ ├── ConcatBinder.cs │ │ │ │ │ │ ├── ContainsBinder.cs │ │ │ │ │ │ ├── CountBinder.cs │ │ │ │ │ │ ├── DefaultIfEmptyBinder.cs │ │ │ │ │ │ ├── DistinctBinder.cs │ │ │ │ │ │ ├── ExceptBinder.cs │ │ │ │ │ │ ├── FirstBinder.cs │ │ │ │ │ │ ├── IntersectBinder.cs │ │ │ │ │ │ ├── LastBinder.cs │ │ │ │ │ │ ├── MaxBinder.cs │ │ │ │ │ │ ├── MinBinder.cs │ │ │ │ │ │ ├── OfTypeBinder.cs │ │ │ │ │ │ ├── ReverseBinder.cs │ │ │ │ │ │ ├── SelectBinder.cs │ │ │ │ │ │ ├── SkipBinder.cs │ │ │ │ │ │ ├── StandardDeviationBinder.cs │ │ │ │ │ │ ├── SumBinder.cs │ │ │ │ │ │ ├── TakeBinder.cs │ │ │ │ │ │ ├── ToArrayBinder.cs │ │ │ │ │ │ ├── ToHashSetBinder.cs │ │ │ │ │ │ ├── ToListBinder.cs │ │ │ │ │ │ ├── UnionBinder.cs │ │ │ │ │ │ ├── WhereBinder.cs │ │ │ │ │ │ └── ZipBinder.cs │ │ │ │ ├── IBindingContext.cs │ │ │ │ ├── IMethodCallBinder.cs │ │ │ │ ├── MethodInfoMethodCallBinder.cs │ │ │ │ ├── MultipleWhereMerger.cs │ │ │ │ ├── NameBasedMethodCallBinder.cs │ │ │ │ ├── PartialEvaluator.cs │ │ │ │ ├── Pipeline │ │ │ │ │ ├── MethodCallBinders │ │ │ │ │ │ ├── AnyBinder.cs │ │ │ │ │ │ ├── AverageBinder.cs │ │ │ │ │ │ ├── CountBinder.cs │ │ │ │ │ │ ├── DistinctBinder.cs │ │ │ │ │ │ ├── FirstBinder.cs │ │ │ │ │ │ ├── GroupByBinder.cs │ │ │ │ │ │ ├── GroupByWithResultSelectorBinder.cs │ │ │ │ │ │ ├── JoinBinder.cs │ │ │ │ │ │ ├── JoinSerializer.cs │ │ │ │ │ │ ├── MaxBinder.cs │ │ │ │ │ │ ├── MinBinder.cs │ │ │ │ │ │ ├── OfTypeBinder.cs │ │ │ │ │ │ ├── OrderByBinder.cs │ │ │ │ │ │ ├── SampleBinder.cs │ │ │ │ │ │ ├── SelectBinder.cs │ │ │ │ │ │ ├── SelectManyBinder.cs │ │ │ │ │ │ ├── SelectingResultOperatorBinderBase.cs │ │ │ │ │ │ ├── SingleBinder.cs │ │ │ │ │ │ ├── SkipBinder.cs │ │ │ │ │ │ ├── StandardDeviationPopulationBinder.cs │ │ │ │ │ │ ├── StandardDeviationSampleBinder.cs │ │ │ │ │ │ ├── SumBinder.cs │ │ │ │ │ │ ├── TakeBinder.cs │ │ │ │ │ │ ├── ThenByBinder.cs │ │ │ │ │ │ └── WhereBinder.cs │ │ │ │ │ ├── PipelineBinder.cs │ │ │ │ │ └── PipelineBindingContext.cs │ │ │ │ ├── PipelineBinderBase.cs │ │ │ │ ├── PreviouslyUsedSerializerFinder.cs │ │ │ │ ├── ProjectionMapper.cs │ │ │ │ ├── SerializationBinder.cs │ │ │ │ ├── SerializerBuilder.cs │ │ │ │ ├── Transformer.cs │ │ │ │ └── Transformers │ │ │ │ │ ├── CollectionConstructorTransformer.cs │ │ │ │ │ ├── ConstantOnRightTransformer.cs │ │ │ │ │ ├── EqualsAnyBooleanTransformer.cs │ │ │ │ │ ├── ExpressionTransformerRegistry.cs │ │ │ │ │ ├── FirstLastNormalizingTransformer.cs │ │ │ │ │ ├── IExpressionTransformer.cs │ │ │ │ │ ├── NullableTransformer.cs │ │ │ │ │ ├── SelectSelectCombiningTransformer.cs │ │ │ │ │ ├── VBCoalesceTransformer.cs │ │ │ │ │ ├── VBCompareStringTransformer.cs │ │ │ │ │ ├── VBInformationIsNothingTransformer.cs │ │ │ │ │ ├── VBNothingConversionRemovalTransformer.cs │ │ │ │ │ └── VBStringIndexComparisonTransformer.cs │ │ │ ├── QueryableExecutionModel.cs │ │ │ ├── QueryableTranslation.cs │ │ │ ├── SerializerHelper.cs │ │ │ └── Translators │ │ │ │ ├── AggregateExpressionTranslator.cs │ │ │ │ ├── AggregateGroupTranslator.cs │ │ │ │ ├── AggregateLanguageTranslator.cs │ │ │ │ ├── AggregateProjectTranslator.cs │ │ │ │ ├── FieldNamePrefixer.cs │ │ │ │ ├── FindProjectionTranslator.cs │ │ │ │ ├── PredicateTranslator.cs │ │ │ │ ├── ProjectedObject.cs │ │ │ │ ├── ProjectedObjectDeserializer.cs │ │ │ │ └── QueryableTranslator.cs │ │ ├── ListCollectionNamesOptions.cs │ │ ├── ListCollectionsOptions.cs │ │ ├── ListDatabasesOptions.cs │ │ ├── MapReduceOptions.cs │ │ ├── MongoBulkWriteException.cs │ │ ├── MongoClient.cs │ │ ├── MongoClientBase.cs │ │ ├── MongoClientSettings.cs │ │ ├── MongoCollectionBase.cs │ │ ├── MongoCollectionImpl.cs │ │ ├── MongoCollectionSettings.cs │ │ ├── MongoCredential.cs │ │ ├── MongoCredentialStore.cs │ │ ├── MongoDB.Driver.csproj │ │ ├── MongoDBRef.cs │ │ ├── MongoDatabaseBase.cs │ │ ├── MongoDatabaseImpl.cs │ │ ├── MongoDatabaseSettings.cs │ │ ├── MongoDefaults.cs │ │ ├── MongoExternalIdentity.cs │ │ ├── MongoIdentity.cs │ │ ├── MongoIdentityEvidence.cs │ │ ├── MongoIndexManagerBase.cs │ │ ├── MongoInternalIdentity.cs │ │ ├── MongoServerAddress.cs │ │ ├── MongoUrl.cs │ │ ├── MongoUrlBuilder.cs │ │ ├── MongoUtils.cs │ │ ├── MongoWriteException.cs │ │ ├── MongoX509Identity.cs │ │ ├── OfTypeMongoCollection.cs │ │ ├── OfTypeSerializer.cs │ │ ├── OperationExecutor.cs │ │ ├── PasswordEvidence.cs │ │ ├── PipelineDefinition.cs │ │ ├── PipelineDefinitionBuilder.cs │ │ ├── PipelineStageDefinition.cs │ │ ├── PipelineStageDefinitionBuilder.cs │ │ ├── ProjectionDefinition.cs │ │ ├── ProjectionDefinitionBuilder.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReadPreferenceResolver.cs │ │ ├── RenameCollectionOptions.cs │ │ ├── ReplaceOneModel.cs │ │ ├── ReplaceOneResult.cs │ │ ├── ReturnDocument.cs │ │ ├── ServerSession.cs │ │ ├── Setting.cs │ │ ├── SortDefinition.cs │ │ ├── SortDefinitionBuilder.cs │ │ ├── SslSettings.cs │ │ ├── Support │ │ │ ├── IndexMap.cs │ │ │ └── ReflectionExtensions.cs │ │ ├── TextSearchOptions.cs │ │ ├── UpdateDefinition.cs │ │ ├── UpdateDefinitionBuilder.cs │ │ ├── UpdateManyModel.cs │ │ ├── UpdateOneModel.cs │ │ ├── UpdateOptions.cs │ │ ├── UpdateResult.cs │ │ ├── WriteConcernError.cs │ │ ├── WriteError.cs │ │ ├── WriteModel.cs │ │ ├── WriteModelType.cs │ │ └── obj │ │ │ ├── Debug │ │ │ ├── netcoreapp2.1 │ │ │ │ ├── MongoDB.Driver.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.assets.cache │ │ │ │ ├── MongoDB.Driver.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.dll │ │ │ │ ├── MongoDB.Driver.pdb │ │ │ │ ├── MongoDB.Driver.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ ├── netcoreapp2.2 │ │ │ │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Driver.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.assets.cache │ │ │ │ ├── MongoDB.Driver.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.dll │ │ │ │ ├── MongoDB.Driver.pdb │ │ │ │ ├── MongoDB.Driver.xml │ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ │ └── netcoreapp3.0 │ │ │ │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ │ │ │ ├── MongoDB.Driver.AssemblyInfo.cs │ │ │ │ ├── MongoDB.Driver.AssemblyInfoInputs.cache │ │ │ │ ├── MongoDB.Driver.assets.cache │ │ │ │ ├── MongoDB.Driver.csproj.CopyComplete │ │ │ │ ├── MongoDB.Driver.csproj.CoreCompileInputs.cache │ │ │ │ ├── MongoDB.Driver.csproj.FileListAbsolute.txt │ │ │ │ ├── MongoDB.Driver.csprojAssemblyReference.cache │ │ │ │ ├── MongoDB.Driver.dll │ │ │ │ ├── MongoDB.Driver.pdb │ │ │ │ └── MongoDB.Driver.xml │ │ │ ├── MongoDB.Driver.csproj.nuget.cache │ │ │ ├── MongoDB.Driver.csproj.nuget.dgspec.json │ │ │ ├── MongoDB.Driver.csproj.nuget.g.props │ │ │ ├── MongoDB.Driver.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── MongoDB.Shared │ │ ├── ApplicationNameHelper.cs │ │ ├── CanonicalDisposableClass.cs │ │ ├── CanonicalDisposableDerivedClass.cs │ │ ├── CanonicalDisposableStruct.cs │ │ ├── CanonicalEquatableClass.cs │ │ ├── CanonicalEquatableDerivedClass.cs │ │ ├── CanonicalEquatableStruct.cs │ │ ├── Hasher.cs │ │ ├── IncrementalMD5.cs │ │ └── MaxTimeHelper.cs │ ├── MongoDB.ruleset │ └── MongoDBLegacy.ruleset │ ├── Pathfinding.Ionic.Zip.Reduced.dll │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Server.ThirdParty.AssemblyInfo.cs │ │ ├── Server.ThirdParty.AssemblyInfoInputs.cache │ │ ├── Server.ThirdParty.assets.cache │ │ └── Server.ThirdParty.csprojAssemblyReference.cache │ ├── Server.ThirdParty.csproj.nuget.dgspec.json │ ├── Server.ThirdParty.csproj.nuget.g.props │ ├── Server.ThirdParty.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Unity ├── Assets │ ├── Bundles.meta │ ├── Bundles │ │ ├── Independent.meta │ │ ├── Independent │ │ │ ├── Code.prefab │ │ │ ├── Code.prefab.meta │ │ │ ├── Config.prefab │ │ │ └── Config.prefab.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── UILobby.prefab │ │ │ ├── UILobby.prefab.meta │ │ │ ├── UILogin.prefab │ │ │ └── UILogin.prefab.meta │ │ ├── Unit.meta │ │ └── Unit │ │ │ ├── Unit.prefab │ │ │ └── Unit.prefab.meta │ ├── Editor.meta │ ├── Editor │ │ ├── AstarPathfindingProject.meta │ │ ├── AstarPathfindingProject │ │ │ ├── AIBaseEditor.cs │ │ │ ├── AIBaseEditor.cs.meta │ │ │ ├── AILerpEditor.cs │ │ │ ├── AILerpEditor.cs.meta │ │ │ ├── AstarPathEditor.cs │ │ │ ├── AstarPathEditor.cs.meta │ │ │ ├── AstarUpdateChecker.cs │ │ │ ├── AstarUpdateChecker.cs.meta │ │ │ ├── AstarUpdateWindow.cs │ │ │ ├── AstarUpdateWindow.cs.meta │ │ │ ├── CustomGraphEditorAttribute.cs │ │ │ ├── CustomGraphEditorAttribute.cs.meta │ │ │ ├── EditorAssets.meta │ │ │ ├── EditorAssets │ │ │ │ ├── AstarEditorSkinDark.guiskin │ │ │ │ ├── AstarEditorSkinDark.guiskin.meta │ │ │ │ ├── AstarEditorSkinLight.guiskin │ │ │ │ ├── AstarEditorSkinLight.guiskin.meta │ │ │ │ ├── DarkSkin.meta │ │ │ │ ├── DarkSkin │ │ │ │ │ ├── colorInterpolationBox.png │ │ │ │ │ ├── colorInterpolationBox.png.meta │ │ │ │ │ ├── deleteButton@1x.png │ │ │ │ │ ├── deleteButton@1x.png.meta │ │ │ │ │ ├── deleteButton@2x.png │ │ │ │ │ ├── deleteButton@2x.png.meta │ │ │ │ │ ├── deleteButton_active@1x.png │ │ │ │ │ ├── deleteButton_active@1x.png.meta │ │ │ │ │ ├── deleteButton_active@2x.png │ │ │ │ │ ├── deleteButton_active@2x.png.meta │ │ │ │ │ ├── editButton@1x.png │ │ │ │ │ ├── editButton@1x.png.meta │ │ │ │ │ ├── editButton@2x.png │ │ │ │ │ ├── editButton@2x.png.meta │ │ │ │ │ ├── editButton_active@1x.png │ │ │ │ │ ├── editButton_active@1x.png.meta │ │ │ │ │ ├── editButton_active@2x.png │ │ │ │ │ ├── editButton_active@2x.png.meta │ │ │ │ │ ├── gizmoButton_off@1x.png │ │ │ │ │ ├── gizmoButton_off@1x.png.meta │ │ │ │ │ ├── gizmoButton_off@2x.png │ │ │ │ │ ├── gizmoButton_off@2x.png.meta │ │ │ │ │ ├── gizmoButton_on@1x.png │ │ │ │ │ ├── gizmoButton_on@1x.png.meta │ │ │ │ │ ├── gizmoButton_on@2x.png │ │ │ │ │ ├── gizmoButton_on@2x.png.meta │ │ │ │ │ ├── gridPivotSelect.png │ │ │ │ │ ├── gridPivotSelect.png.meta │ │ │ │ │ ├── headerBackground.png │ │ │ │ │ ├── headerBackground.png.meta │ │ │ │ │ ├── images.meta │ │ │ │ │ ├── images │ │ │ │ │ │ ├── gridPivotSelect-03.png │ │ │ │ │ │ ├── gridPivotSelect-03.png.meta │ │ │ │ │ │ ├── gridPivotSelect.png │ │ │ │ │ │ ├── gridPivotSelect.png.meta │ │ │ │ │ │ ├── gridPivotSelect_Normal.png │ │ │ │ │ │ ├── gridPivotSelect_Normal.png.meta │ │ │ │ │ │ ├── gridPivotSelect_On.png │ │ │ │ │ │ └── gridPivotSelect_On.png.meta │ │ │ │ │ ├── infoButton@1x.png │ │ │ │ │ ├── infoButton@1x.png.meta │ │ │ │ │ ├── infoButton@2x.png │ │ │ │ │ ├── infoButton@2x.png.meta │ │ │ │ │ ├── infoButton_active@1x.png │ │ │ │ │ ├── infoButton_active@1x.png.meta │ │ │ │ │ ├── infoButton_active@2x.png │ │ │ │ │ ├── infoButton_active@2x.png.meta │ │ │ │ │ ├── lock_closed@1x.png │ │ │ │ │ ├── lock_closed@1x.png.meta │ │ │ │ │ ├── lock_closed@2x.png │ │ │ │ │ ├── lock_closed@2x.png.meta │ │ │ │ │ ├── lock_open@1x.png │ │ │ │ │ ├── lock_open@1x.png.meta │ │ │ │ │ ├── lock_open@2x.png │ │ │ │ │ ├── lock_open@2x.png.meta │ │ │ │ │ ├── pixelBox2.png │ │ │ │ │ ├── pixelBox2.png.meta │ │ │ │ │ ├── pixelBox3@1x.png │ │ │ │ │ ├── pixelBox3@1x.png.meta │ │ │ │ │ ├── pixelBox3@2x.png │ │ │ │ │ ├── pixelBox3@2x.png.meta │ │ │ │ │ ├── pixelBox3_separator.png │ │ │ │ │ └── pixelBox3_separator.png.meta │ │ │ │ ├── LightSkin.meta │ │ │ │ ├── LightSkin │ │ │ │ │ ├── colorInterpolationBox.png │ │ │ │ │ ├── colorInterpolationBox.png.meta │ │ │ │ │ ├── deleteButton@1x.png │ │ │ │ │ ├── deleteButton@1x.png.meta │ │ │ │ │ ├── deleteButton@2x.png │ │ │ │ │ ├── deleteButton@2x.png.meta │ │ │ │ │ ├── deleteButton_active@1x.png │ │ │ │ │ ├── deleteButton_active@1x.png.meta │ │ │ │ │ ├── deleteButton_active@2x.png │ │ │ │ │ ├── deleteButton_active@2x.png.meta │ │ │ │ │ ├── editButton@1x.png │ │ │ │ │ ├── editButton@1x.png.meta │ │ │ │ │ ├── editButton@2x.png │ │ │ │ │ ├── editButton@2x.png.meta │ │ │ │ │ ├── editButton_active@1x.png │ │ │ │ │ ├── editButton_active@1x.png.meta │ │ │ │ │ ├── editButton_active@2x.png │ │ │ │ │ ├── editButton_active@2x.png.meta │ │ │ │ │ ├── gizmoButton_off@1x.png │ │ │ │ │ ├── gizmoButton_off@1x.png.meta │ │ │ │ │ ├── gizmoButton_off@2x.png │ │ │ │ │ ├── gizmoButton_off@2x.png.meta │ │ │ │ │ ├── gizmoButton_on@1x.png │ │ │ │ │ ├── gizmoButton_on@1x.png.meta │ │ │ │ │ ├── gizmoButton_on@2x.png │ │ │ │ │ ├── gizmoButton_on@2x.png.meta │ │ │ │ │ ├── headerBackground.png │ │ │ │ │ ├── headerBackground.png.meta │ │ │ │ │ ├── infoButton@1x.png │ │ │ │ │ ├── infoButton@1x.png.meta │ │ │ │ │ ├── infoButton@2x.png │ │ │ │ │ ├── infoButton@2x.png.meta │ │ │ │ │ ├── infoButton_active@1x.png │ │ │ │ │ ├── infoButton_active@1x.png.meta │ │ │ │ │ ├── infoButton_active@2x.png │ │ │ │ │ ├── infoButton_active@2x.png.meta │ │ │ │ │ ├── lock_closed@1x.png │ │ │ │ │ ├── lock_closed@1x.png.meta │ │ │ │ │ ├── lock_closed@2x.png │ │ │ │ │ ├── lock_closed@2x.png.meta │ │ │ │ │ ├── lock_open@1x.png │ │ │ │ │ ├── lock_open@1x.png.meta │ │ │ │ │ ├── lock_open@2x.png │ │ │ │ │ ├── lock_open@2x.png.meta │ │ │ │ │ ├── pixelBox3@1x.png │ │ │ │ │ ├── pixelBox3@1x.png.meta │ │ │ │ │ ├── pixelBox3@2x.png │ │ │ │ │ ├── pixelBox3@2x.png.meta │ │ │ │ │ ├── reset_normal.png │ │ │ │ │ ├── reset_normal.png.meta │ │ │ │ │ ├── reset_on.png │ │ │ │ │ └── reset_on.png.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── Navmesh.cginc │ │ │ │ │ ├── Navmesh.cginc.meta │ │ │ │ │ ├── Navmesh.mat │ │ │ │ │ ├── Navmesh.mat.meta │ │ │ │ │ ├── Navmesh.shader │ │ │ │ │ ├── Navmesh.shader.meta │ │ │ │ │ ├── NavmeshOutline.mat │ │ │ │ │ ├── NavmeshOutline.mat.meta │ │ │ │ │ ├── NavmeshOutline.shader │ │ │ │ │ ├── NavmeshOutline.shader.meta │ │ │ │ │ ├── line_falloff_1px.png │ │ │ │ │ └── line_falloff_1px.png.meta │ │ │ │ ├── grid.psd │ │ │ │ ├── grid.psd.meta │ │ │ │ ├── images.meta │ │ │ │ ├── images │ │ │ │ │ ├── ArrowDown.png │ │ │ │ │ ├── ArrowDown.png.meta │ │ │ │ │ ├── ArrowDown_on.png │ │ │ │ │ ├── ArrowDown_on.png.meta │ │ │ │ │ ├── ArrowUp.png │ │ │ │ │ ├── ArrowUp.png.meta │ │ │ │ │ ├── ArrowUp_on.png │ │ │ │ │ ├── ArrowUp_on.png.meta │ │ │ │ │ ├── gridPivotSelect.png │ │ │ │ │ ├── gridPivotSelect.png.meta │ │ │ │ │ ├── gridPivotSelect_Normal.png │ │ │ │ │ ├── gridPivotSelect_Normal.png.meta │ │ │ │ │ ├── gridPivotSelect_On.png │ │ │ │ │ ├── gridPivotSelect_On.png.meta │ │ │ │ │ ├── upDownArrow_01.png │ │ │ │ │ ├── upDownArrow_01.png.meta │ │ │ │ │ ├── upDownArrow_02.png │ │ │ │ │ ├── upDownArrow_02.png.meta │ │ │ │ │ ├── upDownButtons_01.png │ │ │ │ │ ├── upDownButtons_01.png.meta │ │ │ │ │ ├── upDownButtons_02.png │ │ │ │ │ └── upDownButtons_02.png.meta │ │ │ │ ├── linkButton_active.png │ │ │ │ ├── linkButton_active.png.meta │ │ │ │ ├── linkButton_normal.png │ │ │ │ ├── linkButton_normal.png.meta │ │ │ │ ├── pixelBox.png │ │ │ │ ├── pixelBox.png.meta │ │ │ │ ├── pixelBox2.png │ │ │ │ ├── pixelBox2.png.meta │ │ │ │ ├── pixelBox3_separator.png │ │ │ │ ├── pixelBox3_separator.png.meta │ │ │ │ ├── tooltips.tsv │ │ │ │ └── tooltips.tsv.meta │ │ │ ├── GraphEditors.meta │ │ │ ├── GraphEditors │ │ │ │ ├── GraphEditor.cs │ │ │ │ ├── GraphEditor.cs.meta │ │ │ │ ├── RecastGraphEditor.cs │ │ │ │ └── RecastGraphEditor.cs.meta │ │ │ ├── GraphUpdateSceneEditor.cs │ │ │ ├── GraphUpdateSceneEditor.cs.meta │ │ │ ├── ModifierEditors.meta │ │ │ ├── ModifierEditors │ │ │ │ ├── RaycastModifierEditor.cs │ │ │ │ ├── RaycastModifierEditor.cs.meta │ │ │ │ ├── SmoothModifierEditor.cs │ │ │ │ └── SmoothModifierEditor.cs.meta │ │ │ ├── PackageTools.meta │ │ │ ├── PackageTools │ │ │ │ ├── EditorBase.cs │ │ │ │ ├── EditorBase.cs.meta │ │ │ │ ├── EditorGUIx.cs │ │ │ │ ├── EditorGUIx.cs.meta │ │ │ │ ├── EnumFlagDrawer.cs │ │ │ │ ├── EnumFlagDrawer.cs.meta │ │ │ │ ├── OptimizationHandler.cs │ │ │ │ └── OptimizationHandler.cs.meta │ │ │ ├── RVOControllerEditor.cs │ │ │ ├── RVOControllerEditor.cs.meta │ │ │ ├── RVONavmeshEditor.cs │ │ │ ├── RVONavmeshEditor.cs.meta │ │ │ ├── RVOSimulatorEditor.cs │ │ │ ├── RVOSimulatorEditor.cs.meta │ │ │ ├── RVOSquareObstacleEditor.cs │ │ │ ├── RVOSquareObstacleEditor.cs.meta │ │ │ ├── RecastMeshObjEditor.cs │ │ │ ├── RecastMeshObjEditor.cs.meta │ │ │ ├── SeekerEditor.cs │ │ │ └── SeekerEditor.cs.meta │ │ ├── BuildEditor.meta │ │ ├── BuildEditor │ │ │ ├── BuildEditor.cs │ │ │ ├── BuildEditor.cs.meta │ │ │ ├── BuildHelper.cs │ │ │ ├── BuildHelper.cs.meta │ │ │ ├── BuildHotfixEditor.cs │ │ │ └── BuildHotfixEditor.cs.meta │ │ ├── ComponentViewEditor.meta │ │ ├── ComponentViewEditor │ │ │ ├── ComponentViewEditor.cs │ │ │ ├── ComponentViewEditor.cs.meta │ │ │ ├── Entity.meta │ │ │ ├── Entity │ │ │ │ ├── EditorLayout.cs │ │ │ │ ├── EditorLayout.cs.meta │ │ │ │ ├── SerializationTypeExtension.cs │ │ │ │ └── SerializationTypeExtension.cs.meta │ │ │ ├── ITypeDrawer.cs │ │ │ ├── ITypeDrawer.cs.meta │ │ │ ├── TypeDrawer.meta │ │ │ ├── TypeDrawer │ │ │ │ ├── AnimationCurveTypeDrawer.cs │ │ │ │ ├── AnimationCurveTypeDrawer.cs.meta │ │ │ │ ├── BoolTypeDrawer.cs │ │ │ │ ├── BoolTypeDrawer.cs.meta │ │ │ │ ├── BoundsTypeDrawer.cs │ │ │ │ ├── BoundsTypeDrawer.cs.meta │ │ │ │ ├── CharTypeDrawer.cs │ │ │ │ ├── CharTypeDrawer.cs.meta │ │ │ │ ├── ColorTypeDrawer.cs │ │ │ │ ├── ColorTypeDrawer.cs.meta │ │ │ │ ├── DateTimeTypeDrawer.cs │ │ │ │ ├── DateTimeTypeDrawer.cs.meta │ │ │ │ ├── DoubleTypeDrawer.cs │ │ │ │ ├── DoubleTypeDrawer.cs.meta │ │ │ │ ├── EnumTypeDrawer.cs │ │ │ │ ├── EnumTypeDrawer.cs.meta │ │ │ │ ├── FloatTypeDrawer.cs │ │ │ │ ├── FloatTypeDrawer.cs.meta │ │ │ │ ├── IntTypeDrawer.cs │ │ │ │ ├── IntTypeDrawer.cs.meta │ │ │ │ ├── LongTypeDrawer.cs │ │ │ │ ├── LongTypeDrawer.cs.meta │ │ │ │ ├── RectTypeDrawer.cs │ │ │ │ ├── RectTypeDrawer.cs.meta │ │ │ │ ├── StringTypeDrawer.cs │ │ │ │ ├── StringTypeDrawer.cs.meta │ │ │ │ ├── UnityObjectTypeDrawer.cs │ │ │ │ ├── UnityObjectTypeDrawer.cs.meta │ │ │ │ ├── Vector2TypeDrawer.cs │ │ │ │ ├── Vector2TypeDrawer.cs.meta │ │ │ │ ├── Vector3TypeDrawer.cs │ │ │ │ ├── Vector3TypeDrawer.cs.meta │ │ │ │ ├── Vector4TypeDrawer.cs │ │ │ │ └── Vector4TypeDrawer.cs.meta │ │ │ ├── TypeDrawerAttribute.cs │ │ │ └── TypeDrawerAttribute.cs.meta │ │ ├── ExcelExporterEditor.meta │ │ ├── ExcelExporterEditor │ │ │ ├── ExcelExporterEditor.cs │ │ │ └── ExcelExporterEditor.cs.meta │ │ ├── GlobalConfigEditor.meta │ │ ├── GlobalConfigEditor │ │ │ ├── GlobalConfigEditor.cs │ │ │ └── GlobalConfigEditor.cs.meta │ │ ├── Helper.meta │ │ ├── Helper │ │ │ ├── EditorResHelper.cs │ │ │ └── EditorResHelper.cs.meta │ │ ├── ILRuntimeEditor.meta │ │ ├── ILRuntimeEditor │ │ │ ├── ILRuntimeCLRBinding.cs │ │ │ └── ILRuntimeCLRBinding.cs.meta │ │ ├── Proto2CsEditor.meta │ │ ├── Proto2CsEditor │ │ │ ├── InnerProto2CS.cs │ │ │ ├── InnerProto2CS.cs.meta │ │ │ ├── Proto2CSEditor.cs │ │ │ └── Proto2CSEditor.cs.meta │ │ ├── ReferenceCollectorEditor.meta │ │ ├── ReferenceCollectorEditor │ │ │ ├── ReferenceCollectorEditor.cs │ │ │ └── ReferenceCollectorEditor.cs.meta │ │ ├── RsyncEditor.meta │ │ ├── RsyncEditor │ │ │ ├── RsyncConfig.cs │ │ │ ├── RsyncConfig.cs.meta │ │ │ ├── RsyncEditor.cs │ │ │ └── RsyncEditor.cs.meta │ │ ├── ServerCommandLineEditor.meta │ │ ├── ServerCommandLineEditor │ │ │ ├── ServerCommandLineEditor.cs │ │ │ └── ServerCommandLineEditor.cs.meta │ │ ├── ServerManagerEditor.meta │ │ ├── ServerManagerEditor │ │ │ ├── ServerManagerEditor.cs │ │ │ └── ServerManagerEditor.cs.meta │ │ ├── Unity.Editor.asmdef │ │ └── Unity.Editor.asmdef.meta │ ├── Hotfix.meta │ ├── Hotfix │ │ ├── Base.meta │ │ ├── Base │ │ │ ├── Event.meta │ │ │ ├── Event │ │ │ │ ├── EventIdType.cs │ │ │ │ ├── EventIdType.cs.meta │ │ │ │ ├── IEvent.cs │ │ │ │ └── IEvent.cs.meta │ │ │ ├── Helper.meta │ │ │ ├── Helper │ │ │ │ ├── ArrayHelper.cs │ │ │ │ ├── ArrayHelper.cs.meta │ │ │ │ ├── AssetBundleHelper.cs │ │ │ │ ├── AssetBundleHelper.cs.meta │ │ │ │ ├── Dumper.cs │ │ │ │ ├── Dumper.cs.meta │ │ │ │ ├── ExceptionHelper.cs │ │ │ │ ├── ExceptionHelper.cs.meta │ │ │ │ ├── JsonHelper.cs │ │ │ │ └── JsonHelper.cs.meta │ │ │ ├── Log.cs │ │ │ ├── Log.cs.meta │ │ │ ├── Object.meta │ │ │ └── Object │ │ │ │ ├── Component.cs │ │ │ │ ├── Component.cs.meta │ │ │ │ ├── ComponentFactory.cs │ │ │ │ ├── ComponentFactory.cs.meta │ │ │ │ ├── ComponentWithId.cs │ │ │ │ ├── ComponentWithId.cs.meta │ │ │ │ ├── Entity.cs │ │ │ │ ├── Entity.cs.meta │ │ │ │ ├── EntityType.cs │ │ │ │ ├── EntityType.cs.meta │ │ │ │ ├── EventSystem.cs │ │ │ │ ├── EventSystem.cs.meta │ │ │ │ ├── IAwakeSystem.cs │ │ │ │ ├── IAwakeSystem.cs.meta │ │ │ │ ├── IChangeSystem.cs │ │ │ │ ├── IChangeSystem.cs.meta │ │ │ │ ├── IDeserializeSystem.cs │ │ │ │ ├── IDeserializeSystem.cs.meta │ │ │ │ ├── IDestroySystem.cs │ │ │ │ ├── IDestroySystem.cs.meta │ │ │ │ ├── ILateUpdateSystem.cs │ │ │ │ ├── ILateUpdateSystem.cs.meta │ │ │ │ ├── ILoadSystem.cs │ │ │ │ ├── ILoadSystem.cs.meta │ │ │ │ ├── ISerializeToEntity.cs │ │ │ │ ├── ISerializeToEntity.cs.meta │ │ │ │ ├── IStartSystem.cs │ │ │ │ ├── IStartSystem.cs.meta │ │ │ │ ├── IUpdateSystem.cs │ │ │ │ ├── IUpdateSystem.cs.meta │ │ │ │ ├── Object.cs │ │ │ │ ├── Object.cs.meta │ │ │ │ ├── ObjectPool.cs │ │ │ │ └── ObjectPool.cs.meta │ │ ├── Entity.meta │ │ ├── Entity │ │ │ ├── Game.cs │ │ │ ├── Game.cs.meta │ │ │ ├── Scene.cs │ │ │ └── Scene.cs.meta │ │ ├── Init.cs │ │ ├── Init.cs.meta │ │ ├── Module.meta │ │ ├── Module │ │ │ ├── Actor.meta │ │ │ ├── Actor │ │ │ │ ├── IActorMessage.cs │ │ │ │ └── IActorMessage.cs.meta │ │ │ ├── ActorLocation.meta │ │ │ ├── ActorLocation │ │ │ │ ├── IActorLocationMessage.cs │ │ │ │ └── IActorLocationMessage.cs.meta │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── ACategory.cs │ │ │ │ ├── ACategory.cs.meta │ │ │ │ ├── ConfigComponent.cs │ │ │ │ ├── ConfigComponent.cs.meta │ │ │ │ ├── ConfigHelper.cs │ │ │ │ ├── ConfigHelper.cs.meta │ │ │ │ ├── IConfig.cs │ │ │ │ └── IConfig.cs.meta │ │ │ ├── Demo.meta │ │ │ ├── Demo │ │ │ │ ├── Config.meta │ │ │ │ ├── Config │ │ │ │ │ ├── UnitConfig.cs │ │ │ │ │ └── UnitConfig.cs.meta │ │ │ │ ├── G2C_TestHotfixHandler.cs │ │ │ │ ├── G2C_TestHotfixHandler.cs.meta │ │ │ │ ├── Helper.meta │ │ │ │ ├── Helper │ │ │ │ │ ├── LoginHelper.cs │ │ │ │ │ ├── LoginHelper.cs.meta │ │ │ │ │ ├── MapHelper.cs │ │ │ │ │ └── MapHelper.cs.meta │ │ │ │ ├── M2C_CreateUnitsHandler.cs │ │ │ │ ├── M2C_CreateUnitsHandler.cs.meta │ │ │ │ ├── M2C_PathfindingResultHandler.cs │ │ │ │ ├── M2C_PathfindingResultHandler.cs.meta │ │ │ │ ├── OperaComponent.cs │ │ │ │ ├── OperaComponent.cs.meta │ │ │ │ ├── TestHotfixSubscribMonoEvent_LogString.cs │ │ │ │ ├── TestHotfixSubscribMonoEvent_LogString.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ └── UI │ │ │ │ │ ├── UILobby.meta │ │ │ │ │ ├── UILobby │ │ │ │ │ ├── Component.meta │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── UILobbyComponent.cs │ │ │ │ │ │ └── UILobbyComponent.cs.meta │ │ │ │ │ ├── System.meta │ │ │ │ │ └── System │ │ │ │ │ │ ├── EnterMapFinish_RemoveLobbyUI.cs │ │ │ │ │ │ ├── EnterMapFinish_RemoveLobbyUI.cs.meta │ │ │ │ │ │ ├── LoginFinish_CreateLobbyUI.cs │ │ │ │ │ │ ├── LoginFinish_CreateLobbyUI.cs.meta │ │ │ │ │ │ ├── UILobbyFactory.cs │ │ │ │ │ │ └── UILobbyFactory.cs.meta │ │ │ │ │ ├── UILogin.meta │ │ │ │ │ └── UILogin │ │ │ │ │ ├── Component.meta │ │ │ │ │ ├── Component │ │ │ │ │ ├── UILoginComponent.cs │ │ │ │ │ └── UILoginComponent.cs.meta │ │ │ │ │ ├── System.meta │ │ │ │ │ └── System │ │ │ │ │ ├── InitSceneStart_CreateLoginUI.cs │ │ │ │ │ ├── InitSceneStart_CreateLoginUI.cs.meta │ │ │ │ │ ├── LoginFinish_RemoveLoginUI.cs │ │ │ │ │ ├── LoginFinish_RemoveLoginUI.cs.meta │ │ │ │ │ ├── UILoginFactory.cs │ │ │ │ │ └── UILoginFactory.cs.meta │ │ │ ├── Message.meta │ │ │ ├── Message │ │ │ │ ├── AMHandler.cs │ │ │ │ ├── AMHandler.cs.meta │ │ │ │ ├── HotfixMessage.cs │ │ │ │ ├── HotfixMessage.cs.meta │ │ │ │ ├── HotfixMessageDispatcher.cs │ │ │ │ ├── HotfixMessageDispatcher.cs.meta │ │ │ │ ├── HotfixOpcode.cs │ │ │ │ ├── HotfixOpcode.cs.meta │ │ │ │ ├── IMHandler.cs │ │ │ │ ├── IMHandler.cs.meta │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IMessage.cs.meta │ │ │ │ ├── MessageDispatcherComponent.cs │ │ │ │ ├── MessageDispatcherComponent.cs.meta │ │ │ │ ├── MessagePool.cs │ │ │ │ ├── MessagePool.cs.meta │ │ │ │ ├── OpcodeTypeComponent.cs │ │ │ │ ├── OpcodeTypeComponent.cs.meta │ │ │ │ ├── Session.cs │ │ │ │ ├── Session.cs.meta │ │ │ │ ├── SessionComponent.cs │ │ │ │ └── SessionComponent.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── IUIFactory.cs │ │ │ │ ├── IUIFactory.cs.meta │ │ │ │ ├── UI.cs │ │ │ │ ├── UI.cs.meta │ │ │ │ ├── UIComponent.cs │ │ │ │ ├── UIComponent.cs.meta │ │ │ │ ├── UIType.cs │ │ │ │ └── UIType.cs.meta │ │ ├── Unity.Hotfix.asmdef │ │ └── Unity.Hotfix.asmdef.meta │ ├── Model.meta │ ├── Model │ │ ├── Base.meta │ │ ├── Base │ │ │ ├── Async.meta │ │ │ ├── Async │ │ │ │ ├── AsyncETTaskMethodBuilder.cs │ │ │ │ ├── AsyncETTaskMethodBuilder.cs.meta │ │ │ │ ├── AsyncETVoidMethodBuilder.cs │ │ │ │ ├── AsyncETVoidMethodBuilder.cs.meta │ │ │ │ ├── AsyncMethodBuilderAttribute.cs │ │ │ │ ├── AsyncMethodBuilderAttribute.cs.meta │ │ │ │ ├── ETCancellationTokenSource.cs │ │ │ │ ├── ETCancellationTokenSource.cs.meta │ │ │ │ ├── ETTask.cs │ │ │ │ ├── ETTask.cs.meta │ │ │ │ ├── ETTaskCompletionSource.cs │ │ │ │ ├── ETTaskCompletionSource.cs.meta │ │ │ │ ├── ETTaskFactory.cs │ │ │ │ ├── ETTaskFactory.cs.meta │ │ │ │ ├── ETVoid.cs │ │ │ │ ├── ETVoid.cs.meta │ │ │ │ ├── IAwaiter.cs │ │ │ │ ├── IAwaiter.cs.meta │ │ │ │ ├── MoveNextRunner.cs │ │ │ │ └── MoveNextRunner.cs.meta │ │ │ ├── DoubleMap.cs │ │ │ ├── DoubleMap.cs.meta │ │ │ ├── Event.meta │ │ │ ├── Event │ │ │ │ ├── Env.cs │ │ │ │ ├── Env.cs.meta │ │ │ │ ├── EnvKey.cs │ │ │ │ ├── EnvKey.cs.meta │ │ │ │ ├── EventAttribute.cs │ │ │ │ ├── EventAttribute.cs.meta │ │ │ │ ├── EventIdType.cs │ │ │ │ ├── EventIdType.cs.meta │ │ │ │ ├── IEvent.cs │ │ │ │ └── IEvent.cs.meta │ │ │ ├── Helper.meta │ │ │ ├── Helper │ │ │ │ ├── ByteHelper.cs │ │ │ │ ├── ByteHelper.cs.meta │ │ │ │ ├── Dumper.cs │ │ │ │ ├── Dumper.cs.meta │ │ │ │ ├── EnumHelper.cs │ │ │ │ ├── EnumHelper.cs.meta │ │ │ │ ├── FileHelper.cs │ │ │ │ ├── FileHelper.cs.meta │ │ │ │ ├── IdGenerater.cs │ │ │ │ ├── IdGenerater.cs.meta │ │ │ │ ├── JsonHelper.cs │ │ │ │ ├── JsonHelper.cs.meta │ │ │ │ ├── MD5Helper.cs │ │ │ │ ├── MD5Helper.cs.meta │ │ │ │ ├── MethodInfoHelper.cs │ │ │ │ ├── MethodInfoHelper.cs.meta │ │ │ │ ├── MongoHelper.cs │ │ │ │ ├── MongoHelper.cs.meta │ │ │ │ ├── NetHelper.cs │ │ │ │ ├── NetHelper.cs.meta │ │ │ │ ├── ObjectHelper.cs │ │ │ │ ├── ObjectHelper.cs.meta │ │ │ │ ├── RandomHelper.cs │ │ │ │ ├── RandomHelper.cs.meta │ │ │ │ ├── StringHelper.cs │ │ │ │ ├── StringHelper.cs.meta │ │ │ │ ├── TimeHelper.cs │ │ │ │ ├── TimeHelper.cs.meta │ │ │ │ ├── ZipHelper.cs │ │ │ │ └── ZipHelper.cs.meta │ │ │ ├── IL.meta │ │ │ ├── IL │ │ │ │ ├── Adapt_IMessage.cs │ │ │ │ ├── Adapt_IMessage.cs.meta │ │ │ │ ├── IAsyncStateMachineAdaptor.cs │ │ │ │ ├── IAsyncStateMachineAdaptor.cs.meta │ │ │ │ ├── IDisposableAdaptor.cs │ │ │ │ ├── IDisposableAdaptor.cs.meta │ │ │ │ ├── ILAdapterAttribute.cs │ │ │ │ ├── ILAdapterAttribute.cs.meta │ │ │ │ ├── ILBindingAttribute.cs │ │ │ │ └── ILBindingAttribute.cs.meta │ │ │ ├── Log.cs │ │ │ ├── Log.cs.meta │ │ │ ├── LogType.cs │ │ │ ├── LogType.cs.meta │ │ │ ├── MultiMap.cs │ │ │ ├── MultiMap.cs.meta │ │ │ ├── Object.meta │ │ │ ├── Object │ │ │ │ ├── BaseAttribute.cs │ │ │ │ ├── BaseAttribute.cs.meta │ │ │ │ ├── Component.cs │ │ │ │ ├── Component.cs.meta │ │ │ │ ├── ComponentFactory.cs │ │ │ │ ├── ComponentFactory.cs.meta │ │ │ │ ├── ComponentView.cs │ │ │ │ ├── ComponentView.cs.meta │ │ │ │ ├── ComponentWithId.cs │ │ │ │ ├── ComponentWithId.cs.meta │ │ │ │ ├── Entity.cs │ │ │ │ ├── Entity.cs.meta │ │ │ │ ├── EntityEventAttribute.cs │ │ │ │ ├── EntityEventAttribute.cs.meta │ │ │ │ ├── EventProxy.cs │ │ │ │ ├── EventProxy.cs.meta │ │ │ │ ├── EventSystem.cs │ │ │ │ ├── EventSystem.cs.meta │ │ │ │ ├── HideInHierarchy.cs │ │ │ │ ├── HideInHierarchy.cs.meta │ │ │ │ ├── IAwakeSystem.cs │ │ │ │ ├── IAwakeSystem.cs.meta │ │ │ │ ├── IChangeSystem.cs │ │ │ │ ├── IChangeSystem.cs.meta │ │ │ │ ├── IDeserializeSystem.cs │ │ │ │ ├── IDeserializeSystem.cs.meta │ │ │ │ ├── IDestroySystem.cs │ │ │ │ ├── IDestroySystem.cs.meta │ │ │ │ ├── ILateUpdateSystem.cs │ │ │ │ ├── ILateUpdateSystem.cs.meta │ │ │ │ ├── ILoadSystem.cs │ │ │ │ ├── ILoadSystem.cs.meta │ │ │ │ ├── ISerializeToEntity.cs │ │ │ │ ├── ISerializeToEntity.cs.meta │ │ │ │ ├── IStartSystem.cs │ │ │ │ ├── IStartSystem.cs.meta │ │ │ │ ├── IUpdateSystem.cs │ │ │ │ ├── IUpdateSystem.cs.meta │ │ │ │ ├── Object.cs │ │ │ │ ├── Object.cs.meta │ │ │ │ ├── ObjectPool.cs │ │ │ │ ├── ObjectPool.cs.meta │ │ │ │ ├── ObjectSystemAttribute.cs │ │ │ │ └── ObjectSystemAttribute.cs.meta │ │ │ ├── OneThreadSynchronizationContext.cs │ │ │ ├── OneThreadSynchronizationContext.cs.meta │ │ │ ├── ProcessHelper.cs │ │ │ ├── ProcessHelper.cs.meta │ │ │ ├── QueueDictionary.cs │ │ │ ├── QueueDictionary.cs.meta │ │ │ ├── RecyclableMemoryStream.meta │ │ │ ├── RecyclableMemoryStream │ │ │ │ ├── Events.cs │ │ │ │ ├── Events.cs.meta │ │ │ │ ├── RecyclableMemoryStream.cs │ │ │ │ ├── RecyclableMemoryStream.cs.meta │ │ │ │ ├── RecyclableMemoryStreamManager.cs │ │ │ │ └── RecyclableMemoryStreamManager.cs.meta │ │ │ ├── TryLocker.cs │ │ │ ├── TryLocker.cs.meta │ │ │ ├── UnOrderMultiMap.cs │ │ │ └── UnOrderMultiMap.cs.meta │ │ ├── Component.meta │ │ ├── Component │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── ClientConfig.cs │ │ │ │ ├── ClientConfig.cs.meta │ │ │ │ ├── DBConfig.cs │ │ │ │ ├── DBConfig.cs.meta │ │ │ │ ├── GlobalProto.cs │ │ │ │ ├── GlobalProto.cs.meta │ │ │ │ ├── HttpConfig.cs │ │ │ │ ├── HttpConfig.cs.meta │ │ │ │ ├── InnerConfig.cs │ │ │ │ ├── InnerConfig.cs.meta │ │ │ │ ├── OuterConfig.cs │ │ │ │ ├── OuterConfig.cs.meta │ │ │ │ ├── RunServerConfig.cs │ │ │ │ ├── RunServerConfig.cs.meta │ │ │ │ ├── StartConfig.cs │ │ │ │ └── StartConfig.cs.meta │ │ │ ├── GlobalConfigComponent.cs │ │ │ ├── GlobalConfigComponent.cs.meta │ │ │ ├── SceneChangeComponent.cs │ │ │ ├── SceneChangeComponent.cs.meta │ │ │ ├── TimerComponent.cs │ │ │ └── TimerComponent.cs.meta │ │ ├── Entity.meta │ │ ├── Entity │ │ │ ├── Game.cs │ │ │ ├── Game.cs.meta │ │ │ ├── Hotfix.cs │ │ │ ├── Hotfix.cs.meta │ │ │ ├── Scene.cs │ │ │ ├── Scene.cs.meta │ │ │ ├── UnityWebRequestAsync.cs │ │ │ └── UnityWebRequestAsync.cs.meta │ │ ├── Helper.meta │ │ ├── Helper │ │ │ ├── ActionHelper.cs │ │ │ ├── ActionHelper.cs.meta │ │ │ ├── BundleHelper.cs │ │ │ ├── BundleHelper.cs.meta │ │ │ ├── GameObjectHelper.cs │ │ │ ├── GameObjectHelper.cs.meta │ │ │ ├── ILHelper.cs │ │ │ ├── ILHelper.cs.meta │ │ │ ├── PathHelper.cs │ │ │ ├── PathHelper.cs.meta │ │ │ ├── PositionHelper.cs │ │ │ ├── PositionHelper.cs.meta │ │ │ ├── ResourcesHelper.cs │ │ │ └── ResourcesHelper.cs.meta │ │ ├── ILBinding.meta │ │ ├── ILBinding │ │ │ ├── CLRBindings.cs │ │ │ ├── CLRBindings.cs.meta │ │ │ ├── ETModel_ActionHelper_Binding.cs │ │ │ ├── ETModel_ActionHelper_Binding.cs.meta │ │ │ ├── ETModel_AnimatorComponent_Binding.cs │ │ │ ├── ETModel_AnimatorComponent_Binding.cs.meta │ │ │ ├── ETModel_AppTypeHelper_Binding.cs │ │ │ ├── ETModel_AppTypeHelper_Binding.cs.meta │ │ │ ├── ETModel_AssetBundleHelper_Binding.cs │ │ │ ├── ETModel_AssetBundleHelper_Binding.cs.meta │ │ │ ├── ETModel_AsyncETVoidMethodBuilder_Binding.cs │ │ │ ├── ETModel_AsyncETVoidMethodBuilder_Binding.cs.meta │ │ │ ├── ETModel_ByteHelper_Binding.cs │ │ │ ├── ETModel_ByteHelper_Binding.cs.meta │ │ │ ├── ETModel_C2G_EnterMap_Binding.cs │ │ │ ├── ETModel_C2G_EnterMap_Binding.cs.meta │ │ │ ├── ETModel_ComponentFactory_Binding.cs │ │ │ ├── ETModel_ComponentFactory_Binding.cs.meta │ │ │ ├── ETModel_ComponentView_Binding.cs │ │ │ ├── ETModel_ComponentView_Binding.cs.meta │ │ │ ├── ETModel_Component_Binding.cs │ │ │ ├── ETModel_Component_Binding.cs.meta │ │ │ ├── ETModel_ConfigAttribute_Binding.cs │ │ │ ├── ETModel_ConfigAttribute_Binding.cs.meta │ │ │ ├── ETModel_Define_Binding.cs │ │ │ ├── ETModel_Define_Binding.cs.meta │ │ │ ├── ETModel_DoubleMap_2_UInt16_Type_Binding.cs │ │ │ ├── ETModel_DoubleMap_2_UInt16_Type_Binding.cs.meta │ │ │ ├── ETModel_ETTaskCompletionSource_1_Google_Protobuf_Adapt_IMessage_Binding_Adapt_t.cs │ │ │ ├── ETModel_ETTaskCompletionSource_1_Google_Protobuf_Adapt_IMessage_Binding_Adapt_t.cs.meta │ │ │ ├── ETModel_ETTask_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding.cs │ │ │ ├── ETModel_ETTask_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding.cs.meta │ │ │ ├── ETModel_ETTask_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding_Await_t.cs │ │ │ ├── ETModel_ETTask_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding_Await_t.cs.meta │ │ │ ├── ETModel_ETTask_1_IResponse_Binding.cs │ │ │ ├── ETModel_ETTask_1_IResponse_Binding.cs.meta │ │ │ ├── ETModel_ETTask_1_IResponse_Binding_Awaiter_Binding.cs │ │ │ ├── ETModel_ETTask_1_IResponse_Binding_Awaiter_Binding.cs.meta │ │ │ ├── ETModel_ETTask_Binding.cs │ │ │ ├── ETModel_ETTask_Binding.cs.meta │ │ │ ├── ETModel_ETTask_Binding_Awaiter_Binding.cs │ │ │ ├── ETModel_ETTask_Binding_Awaiter_Binding.cs.meta │ │ │ ├── ETModel_ETVoid_Binding.cs │ │ │ ├── ETModel_ETVoid_Binding.cs.meta │ │ │ ├── ETModel_Entity_Binding.cs │ │ │ ├── ETModel_Entity_Binding.cs.meta │ │ │ ├── ETModel_ErrorCode_Binding.cs │ │ │ ├── ETModel_ErrorCode_Binding.cs.meta │ │ │ ├── ETModel_EventAttribute_Binding.cs │ │ │ ├── ETModel_EventAttribute_Binding.cs.meta │ │ │ ├── ETModel_EventProxy_Binding.cs │ │ │ ├── ETModel_EventProxy_Binding.cs.meta │ │ │ ├── ETModel_EventSystem_Binding.cs │ │ │ ├── ETModel_EventSystem_Binding.cs.meta │ │ │ ├── ETModel_Frame_ClickMap_Binding.cs │ │ │ ├── ETModel_Frame_ClickMap_Binding.cs.meta │ │ │ ├── ETModel_G2C_EnterMap_Binding.cs │ │ │ ├── ETModel_G2C_EnterMap_Binding.cs.meta │ │ │ ├── ETModel_GameObjectHelper_Binding.cs │ │ │ ├── ETModel_GameObjectHelper_Binding.cs.meta │ │ │ ├── ETModel_Game_Binding.cs │ │ │ ├── ETModel_Game_Binding.cs.meta │ │ │ ├── ETModel_GizmosDebug_Binding.cs │ │ │ ├── ETModel_GizmosDebug_Binding.cs.meta │ │ │ ├── ETModel_GlobalConfigComponent_Binding.cs │ │ │ ├── ETModel_GlobalConfigComponent_Binding.cs.meta │ │ │ ├── ETModel_GlobalProto_Binding.cs │ │ │ ├── ETModel_GlobalProto_Binding.cs.meta │ │ │ ├── ETModel_Hotfix_Binding.cs │ │ │ ├── ETModel_Hotfix_Binding.cs.meta │ │ │ ├── ETModel_IMessagePacker_Binding.cs │ │ │ ├── ETModel_IMessagePacker_Binding.cs.meta │ │ │ ├── ETModel_IdGenerater_Binding.cs │ │ │ ├── ETModel_IdGenerater_Binding.cs.meta │ │ │ ├── ETModel_LayerNames_Binding.cs │ │ │ ├── ETModel_LayerNames_Binding.cs.meta │ │ │ ├── ETModel_Log_Binding.cs │ │ │ ├── ETModel_Log_Binding.cs.meta │ │ │ ├── ETModel_M2C_CreateUnits_Binding.cs │ │ │ ├── ETModel_M2C_CreateUnits_Binding.cs.meta │ │ │ ├── ETModel_M2C_PathfindingResult_Binding.cs │ │ │ ├── ETModel_M2C_PathfindingResult_Binding.cs.meta │ │ │ ├── ETModel_MessageAttribute_Binding.cs │ │ │ ├── ETModel_MessageAttribute_Binding.cs.meta │ │ │ ├── ETModel_MessageDispatcherComponent_Binding.cs │ │ │ ├── ETModel_MessageDispatcherComponent_Binding.cs.meta │ │ │ ├── ETModel_MessageInfo_Binding.cs │ │ │ ├── ETModel_MessageInfo_Binding.cs.meta │ │ │ ├── ETModel_MessageProxy_Binding.cs │ │ │ ├── ETModel_MessageProxy_Binding.cs.meta │ │ │ ├── ETModel_MongoHelper_Binding.cs │ │ │ ├── ETModel_MongoHelper_Binding.cs.meta │ │ │ ├── ETModel_NetworkComponent_Binding.cs │ │ │ ├── ETModel_NetworkComponent_Binding.cs.meta │ │ │ ├── ETModel_OpcodeHelper_Binding.cs │ │ │ ├── ETModel_OpcodeHelper_Binding.cs.meta │ │ │ ├── ETModel_OpcodeTypeComponent_Binding.cs │ │ │ ├── ETModel_OpcodeTypeComponent_Binding.cs.meta │ │ │ ├── ETModel_PlayerComponent_Binding.cs │ │ │ ├── ETModel_PlayerComponent_Binding.cs.meta │ │ │ ├── ETModel_Player_Binding.cs │ │ │ ├── ETModel_Player_Binding.cs.meta │ │ │ ├── ETModel_ResourcesComponent_Binding.cs │ │ │ ├── ETModel_ResourcesComponent_Binding.cs.meta │ │ │ ├── ETModel_RpcException_Binding.cs │ │ │ ├── ETModel_RpcException_Binding.cs.meta │ │ │ ├── ETModel_SceneChangeComponent_Binding.cs │ │ │ ├── ETModel_SceneChangeComponent_Binding.cs.meta │ │ │ ├── ETModel_SessionCallbackComponent_Binding.cs │ │ │ ├── ETModel_SessionCallbackComponent_Binding.cs.meta │ │ │ ├── ETModel_SessionComponent_Binding.cs │ │ │ ├── ETModel_SessionComponent_Binding.cs.meta │ │ │ ├── ETModel_Session_Binding.cs │ │ │ ├── ETModel_Session_Binding.cs.meta │ │ │ ├── ETModel_StringHelper_Binding.cs │ │ │ ├── ETModel_StringHelper_Binding.cs.meta │ │ │ ├── ETModel_UnOrderMultiMap_2_Type_ILTypeInstance_Binding.cs │ │ │ ├── ETModel_UnOrderMultiMap_2_Type_ILTypeInstance_Binding.cs.meta │ │ │ ├── ETModel_UnitComponent_Binding.cs │ │ │ ├── ETModel_UnitComponent_Binding.cs.meta │ │ │ ├── ETModel_UnitFactory_Binding.cs │ │ │ ├── ETModel_UnitFactory_Binding.cs.meta │ │ │ ├── ETModel_UnitInfo_Binding.cs │ │ │ ├── ETModel_UnitInfo_Binding.cs.meta │ │ │ ├── ETModel_UnitPathComponent_Binding.cs │ │ │ ├── ETModel_UnitPathComponent_Binding.cs.meta │ │ │ ├── ETModel_Unit_Binding.cs │ │ │ ├── ETModel_Unit_Binding.cs.meta │ │ │ ├── Google_Protobuf_ByteString_Binding.cs │ │ │ ├── Google_Protobuf_ByteString_Binding.cs.meta │ │ │ ├── Google_Protobuf_CodedInputStream_Binding.cs │ │ │ ├── Google_Protobuf_CodedInputStream_Binding.cs.meta │ │ │ ├── Google_Protobuf_CodedOutputStream_Binding.cs │ │ │ ├── Google_Protobuf_CodedOutputStream_Binding.cs.meta │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Google_Protobuf_Adapt_IMessage_Bi_t.cs │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Google_Protobuf_Adapt_IMessage_Bi_t.cs.meta │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Int32_Binding.cs │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Int32_Binding.cs.meta │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Int64_Binding.cs │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Int64_Binding.cs.meta │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Single_Binding.cs │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_Single_Binding.cs.meta │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_String_Binding.cs │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_String_Binding.cs.meta │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_UnitInfo_Binding.cs │ │ │ ├── Google_Protobuf_Collections_RepeatedField_1_UnitInfo_Binding.cs.meta │ │ │ ├── Google_Protobuf_FieldCodec_Binding.cs │ │ │ ├── Google_Protobuf_FieldCodec_Binding.cs.meta │ │ │ ├── Google_Protobuf_MessageParser_1_Google_Protobuf_Adapt_IMessage_Binding_Adapto_t.cs │ │ │ ├── Google_Protobuf_MessageParser_1_Google_Protobuf_Adapt_IMessage_Binding_Adapto_t.cs.meta │ │ │ ├── Google_Protobuf_ProtoPreconditions_Binding.cs │ │ │ ├── Google_Protobuf_ProtoPreconditions_Binding.cs.meta │ │ │ ├── LitJson_JsonMapper_Binding.cs │ │ │ ├── LitJson_JsonMapper_Binding.cs.meta │ │ │ ├── ReferenceCollector_Binding.cs │ │ │ ├── ReferenceCollector_Binding.cs.meta │ │ │ ├── System_Action_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding.cs │ │ │ ├── System_Action_1_Google_Protobuf_Adapt_IMessage_Binding_Adaptor_Binding.cs.meta │ │ │ ├── System_Activator_Binding.cs │ │ │ ├── System_Activator_Binding.cs.meta │ │ │ ├── System_Array_Binding.cs │ │ │ ├── System_Array_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_Int32_Action_1_Google_Protobuf_Adapt__t.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_Int32_Action_1_Google_Protobuf_Adapt__t.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_Int64_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_Int64_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding_ValueCo_t.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding_ValueCo_t.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding_ValueCo_t_t.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_String_ILTypeInstance_Binding_ValueCo_t_t.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_String_List_1_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_String_List_1_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_Enumerato_t.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_Enumerato_t.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_ValueColl_t.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_ValueColl_t.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_ValueColl_t_t.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_ILTypeInstance_Binding_ValueColl_t_t.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_Queue_1_Object_Binding.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_Type_Queue_1_Object_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_UInt16_List_1_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_UInt16_List_1_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Dictionary_2_UInt16_Object_Binding.cs │ │ │ ├── System_Collections_Generic_Dictionary_2_UInt16_Object_Binding.cs.meta │ │ │ ├── System_Collections_Generic_HashSet_1_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_HashSet_1_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_HashSet_1_ILTypeInstance_Binding_Enumerator_Bindin_t.cs │ │ │ ├── System_Collections_Generic_HashSet_1_ILTypeInstance_Binding_Enumerator_Bindin_t.cs.meta │ │ │ ├── System_Collections_Generic_IEnumerator_1_UnitInfo_Binding.cs │ │ │ ├── System_Collections_Generic_IEnumerator_1_UnitInfo_Binding.cs.meta │ │ │ ├── System_Collections_Generic_KeyValuePair_2_Type_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_KeyValuePair_2_Type_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_List_1_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_List_1_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_List_1_ILTypeInstance_Binding_Enumerator_Binding.cs │ │ │ ├── System_Collections_Generic_List_1_ILTypeInstance_Binding_Enumerator_Binding.cs.meta │ │ │ ├── System_Collections_Generic_List_1_Object_Binding.cs │ │ │ ├── System_Collections_Generic_List_1_Object_Binding.cs.meta │ │ │ ├── System_Collections_Generic_List_1_Type_Binding.cs │ │ │ ├── System_Collections_Generic_List_1_Type_Binding.cs.meta │ │ │ ├── System_Collections_Generic_List_1_Type_Binding_Enumerator_Binding.cs │ │ │ ├── System_Collections_Generic_List_1_Type_Binding_Enumerator_Binding.cs.meta │ │ │ ├── System_Collections_Generic_List_1_Vector3_Binding.cs │ │ │ ├── System_Collections_Generic_List_1_Vector3_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Queue_1_ILTypeInstance_Binding.cs │ │ │ ├── System_Collections_Generic_Queue_1_ILTypeInstance_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Queue_1_Int64_Binding.cs │ │ │ ├── System_Collections_Generic_Queue_1_Int64_Binding.cs.meta │ │ │ ├── System_Collections_Generic_Queue_1_Object_Binding.cs │ │ │ ├── System_Collections_Generic_Queue_1_Object_Binding.cs.meta │ │ │ ├── System_Collections_IDictionary_Binding.cs │ │ │ ├── System_Collections_IDictionary_Binding.cs.meta │ │ │ ├── System_Collections_IEnumerable_Binding.cs │ │ │ ├── System_Collections_IEnumerable_Binding.cs.meta │ │ │ ├── System_Collections_IEnumerator_Binding.cs │ │ │ ├── System_Collections_IEnumerator_Binding.cs.meta │ │ │ ├── System_Exception_Binding.cs │ │ │ ├── System_Exception_Binding.cs.meta │ │ │ ├── System_IDisposable_Binding.cs │ │ │ ├── System_IDisposable_Binding.cs.meta │ │ │ ├── System_Linq_Enumerable_Binding.cs │ │ │ ├── System_Linq_Enumerable_Binding.cs.meta │ │ │ ├── System_NotImplementedException_Binding.cs │ │ │ ├── System_NotImplementedException_Binding.cs.meta │ │ │ ├── System_Object_Binding.cs │ │ │ ├── System_Object_Binding.cs.meta │ │ │ ├── System_Reflection_MemberInfo_Binding.cs │ │ │ ├── System_Reflection_MemberInfo_Binding.cs.meta │ │ │ ├── System_Reflection_MethodBase_Binding.cs │ │ │ ├── System_Reflection_MethodBase_Binding.cs.meta │ │ │ ├── System_Reflection_PropertyInfo_Binding.cs │ │ │ ├── System_Reflection_PropertyInfo_Binding.cs.meta │ │ │ ├── System_String_Binding.cs │ │ │ ├── System_String_Binding.cs.meta │ │ │ ├── System_Text_StringBuilder_Binding.cs │ │ │ ├── System_Text_StringBuilder_Binding.cs.meta │ │ │ ├── System_Threading_CancellationToken_Binding.cs │ │ │ ├── System_Threading_CancellationToken_Binding.cs.meta │ │ │ ├── System_Type_Binding.cs │ │ │ ├── System_Type_Binding.cs.meta │ │ │ ├── UnityEngine_Camera_Binding.cs │ │ │ ├── UnityEngine_Camera_Binding.cs.meta │ │ │ ├── UnityEngine_Canvas_Binding.cs │ │ │ ├── UnityEngine_Canvas_Binding.cs.meta │ │ │ ├── UnityEngine_Component_Binding.cs │ │ │ ├── UnityEngine_Component_Binding.cs.meta │ │ │ ├── UnityEngine_Debug_Binding.cs │ │ │ ├── UnityEngine_Debug_Binding.cs.meta │ │ │ ├── UnityEngine_GameObject_Binding.cs │ │ │ ├── UnityEngine_GameObject_Binding.cs.meta │ │ │ ├── UnityEngine_Input_Binding.cs │ │ │ ├── UnityEngine_Input_Binding.cs.meta │ │ │ ├── UnityEngine_LayerMask_Binding.cs │ │ │ ├── UnityEngine_LayerMask_Binding.cs.meta │ │ │ ├── UnityEngine_Object_Binding.cs │ │ │ ├── UnityEngine_Object_Binding.cs.meta │ │ │ ├── UnityEngine_Physics_Binding.cs │ │ │ ├── UnityEngine_Physics_Binding.cs.meta │ │ │ ├── UnityEngine_RaycastHit_Binding.cs │ │ │ ├── UnityEngine_RaycastHit_Binding.cs.meta │ │ │ ├── UnityEngine_TextAsset_Binding.cs │ │ │ ├── UnityEngine_TextAsset_Binding.cs.meta │ │ │ ├── UnityEngine_Transform_Binding.cs │ │ │ ├── UnityEngine_Transform_Binding.cs.meta │ │ │ ├── UnityEngine_UI_Button_Binding.cs │ │ │ ├── UnityEngine_UI_Button_Binding.cs.meta │ │ │ ├── UnityEngine_UI_InputField_Binding.cs │ │ │ ├── UnityEngine_UI_InputField_Binding.cs.meta │ │ │ ├── UnityEngine_Vector3_Binding.cs │ │ │ └── UnityEngine_Vector3_Binding.cs.meta │ │ ├── Init.cs │ │ ├── Init.cs.meta │ │ ├── Module.meta │ │ ├── Module │ │ │ ├── Actor.meta │ │ │ ├── Actor │ │ │ │ ├── IActorMessage.cs │ │ │ │ └── IActorMessage.cs.meta │ │ │ ├── ActorLocation.meta │ │ │ ├── ActorLocation │ │ │ │ ├── IActorLocationMessage.cs │ │ │ │ └── IActorLocationMessage.cs.meta │ │ │ ├── AssetsBundle.meta │ │ │ ├── AssetsBundle │ │ │ │ ├── AssetsBundleLoaderAsync.cs │ │ │ │ ├── AssetsBundleLoaderAsync.cs.meta │ │ │ │ ├── AssetsLoaderAsync.cs │ │ │ │ ├── AssetsLoaderAsync.cs.meta │ │ │ │ ├── BundleDownloaderComponent.cs │ │ │ │ ├── BundleDownloaderComponent.cs.meta │ │ │ │ ├── ResourcesComponent.cs │ │ │ │ ├── ResourcesComponent.cs.meta │ │ │ │ ├── VersionConfig.cs │ │ │ │ └── VersionConfig.cs.meta │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── ACategory.cs │ │ │ │ ├── ACategory.cs.meta │ │ │ │ ├── AConfigComponent.cs │ │ │ │ ├── AConfigComponent.cs.meta │ │ │ │ ├── ConfigAttribute.cs │ │ │ │ ├── ConfigAttribute.cs.meta │ │ │ │ ├── ConfigComponent.cs │ │ │ │ ├── ConfigComponent.cs.meta │ │ │ │ ├── ConfigHelper.cs │ │ │ │ ├── ConfigHelper.cs.meta │ │ │ │ ├── IConfig.cs │ │ │ │ └── IConfig.cs.meta │ │ │ ├── CoroutineLock.meta │ │ │ ├── CoroutineLock │ │ │ │ ├── CoroutineLock.cs │ │ │ │ ├── CoroutineLock.cs.meta │ │ │ │ ├── CoroutineLockComponent.cs │ │ │ │ ├── CoroutineLockComponent.cs.meta │ │ │ │ ├── CoroutineLockQueue.cs │ │ │ │ ├── CoroutineLockQueue.cs.meta │ │ │ │ ├── CoroutineLockQueueType.cs │ │ │ │ ├── CoroutineLockQueueType.cs.meta │ │ │ │ ├── CoroutineLockType.cs │ │ │ │ └── CoroutineLockType.cs.meta │ │ │ ├── Demo.meta │ │ │ ├── Demo │ │ │ │ ├── AnimatorComponent.cs │ │ │ │ ├── AnimatorComponent.cs.meta │ │ │ │ ├── CameraComponent.cs │ │ │ │ ├── CameraComponent.cs.meta │ │ │ │ ├── Config.meta │ │ │ │ ├── Config │ │ │ │ │ ├── UnitConfig.cs │ │ │ │ │ └── UnitConfig.cs.meta │ │ │ │ ├── MoveComponent.cs │ │ │ │ ├── MoveComponent.cs.meta │ │ │ │ ├── Player.cs │ │ │ │ ├── Player.cs.meta │ │ │ │ ├── PlayerComponent.cs │ │ │ │ ├── PlayerComponent.cs.meta │ │ │ │ ├── PlayerFactory.cs │ │ │ │ ├── PlayerFactory.cs.meta │ │ │ │ ├── SessionComponent.cs │ │ │ │ ├── SessionComponent.cs.meta │ │ │ │ ├── TurnComponent.cs │ │ │ │ ├── TurnComponent.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── UILoading.meta │ │ │ │ │ └── UILoading │ │ │ │ │ │ ├── Component.meta │ │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── UILoadingComponent.cs │ │ │ │ │ │ └── UILoadingComponent.cs.meta │ │ │ │ │ │ ├── System.meta │ │ │ │ │ │ └── System │ │ │ │ │ │ ├── LoadingBeginEvent_CreateLoadingUI.cs │ │ │ │ │ │ ├── LoadingBeginEvent_CreateLoadingUI.cs.meta │ │ │ │ │ │ ├── LoadingFinishEvent_RemoveLoadingUI.cs │ │ │ │ │ │ ├── LoadingFinishEvent_RemoveLoadingUI.cs.meta │ │ │ │ │ │ ├── UILoadingFactory.cs │ │ │ │ │ │ └── UILoadingFactory.cs.meta │ │ │ │ ├── Unit.cs │ │ │ │ ├── Unit.cs.meta │ │ │ │ ├── UnitComponent.cs │ │ │ │ ├── UnitComponent.cs.meta │ │ │ │ ├── UnitFactory.cs │ │ │ │ ├── UnitFactory.cs.meta │ │ │ │ ├── UnitPathComponent.cs │ │ │ │ └── UnitPathComponent.cs.meta │ │ │ ├── Filter.meta │ │ │ ├── Filter │ │ │ │ ├── FilterAttribute.cs │ │ │ │ ├── FilterAttribute.cs.meta │ │ │ │ ├── FilterComponent.cs │ │ │ │ ├── FilterComponent.cs.meta │ │ │ │ ├── FilterEntity.cs │ │ │ │ ├── FilterEntity.cs.meta │ │ │ │ ├── IFilter.cs │ │ │ │ └── IFilter.cs.meta │ │ │ ├── Message.meta │ │ │ ├── Message │ │ │ │ ├── AMHandler.cs │ │ │ │ ├── AMHandler.cs.meta │ │ │ │ ├── ErrorCode.cs │ │ │ │ ├── ErrorCode.cs.meta │ │ │ │ ├── IMHandler.cs │ │ │ │ ├── IMHandler.cs.meta │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IMessage.cs.meta │ │ │ │ ├── IMessageDispatcher.cs │ │ │ │ ├── IMessageDispatcher.cs.meta │ │ │ │ ├── IMessagePacker.cs │ │ │ │ ├── IMessagePacker.cs.meta │ │ │ │ ├── MessageAttribute.cs │ │ │ │ ├── MessageAttribute.cs.meta │ │ │ │ ├── MessageDispatcherComponent.cs │ │ │ │ ├── MessageDispatcherComponent.cs.meta │ │ │ │ ├── MessageHandlerAttribute.cs │ │ │ │ ├── MessageHandlerAttribute.cs.meta │ │ │ │ ├── MessageInfo.cs │ │ │ │ ├── MessageInfo.cs.meta │ │ │ │ ├── MessagePool.cs │ │ │ │ ├── MessagePool.cs.meta │ │ │ │ ├── MessageProxy.cs │ │ │ │ ├── MessageProxy.cs.meta │ │ │ │ ├── NetOuterComponent.cs │ │ │ │ ├── NetOuterComponent.cs.meta │ │ │ │ ├── NetOuterComponentSystem.cs │ │ │ │ ├── NetOuterComponentSystem.cs.meta │ │ │ │ ├── Network.meta │ │ │ │ ├── Network │ │ │ │ │ ├── AChannel.cs │ │ │ │ │ ├── AChannel.cs.meta │ │ │ │ │ ├── AService.cs │ │ │ │ │ ├── AService.cs.meta │ │ │ │ │ ├── Circularbuffer.cs │ │ │ │ │ ├── Circularbuffer.cs.meta │ │ │ │ │ ├── KCP.meta │ │ │ │ │ ├── KCP │ │ │ │ │ │ ├── KChannel.cs │ │ │ │ │ │ ├── KChannel.cs.meta │ │ │ │ │ │ ├── KService.cs │ │ │ │ │ │ ├── KService.cs.meta │ │ │ │ │ │ ├── Kcp.cs │ │ │ │ │ │ └── Kcp.cs.meta │ │ │ │ │ ├── NetworkHelper.cs │ │ │ │ │ ├── NetworkHelper.cs.meta │ │ │ │ │ ├── TCP.meta │ │ │ │ │ ├── TCP │ │ │ │ │ │ ├── PacketParser.cs │ │ │ │ │ │ ├── PacketParser.cs.meta │ │ │ │ │ │ ├── TChannel.cs │ │ │ │ │ │ ├── TChannel.cs.meta │ │ │ │ │ │ ├── TService.cs │ │ │ │ │ │ └── TService.cs.meta │ │ │ │ │ ├── WebSocket.meta │ │ │ │ │ └── WebSocket │ │ │ │ │ │ ├── WChannel.cs │ │ │ │ │ │ ├── WChannel.cs.meta │ │ │ │ │ │ ├── WService.cs │ │ │ │ │ │ └── WService.cs.meta │ │ │ │ ├── NetworkComponent.cs │ │ │ │ ├── NetworkComponent.cs.meta │ │ │ │ ├── Opcode.cs │ │ │ │ ├── Opcode.cs.meta │ │ │ │ ├── OpcodeHelper.cs │ │ │ │ ├── OpcodeHelper.cs.meta │ │ │ │ ├── OpcodeTypeComponent.cs │ │ │ │ ├── OpcodeTypeComponent.cs.meta │ │ │ │ ├── OuterMessage.cs │ │ │ │ ├── OuterMessage.cs.meta │ │ │ │ ├── OuterMessageDispatcher.cs │ │ │ │ ├── OuterMessageDispatcher.cs.meta │ │ │ │ ├── OuterOpcode.cs │ │ │ │ ├── OuterOpcode.cs.meta │ │ │ │ ├── ProtobufHelper.cs │ │ │ │ ├── ProtobufHelper.cs.meta │ │ │ │ ├── ProtobufPacker.cs │ │ │ │ ├── ProtobufPacker.cs.meta │ │ │ │ ├── RpcException.cs │ │ │ │ ├── RpcException.cs.meta │ │ │ │ ├── Session.cs │ │ │ │ ├── Session.cs.meta │ │ │ │ ├── SessionCallbackComponent.cs │ │ │ │ └── SessionCallbackComponent.cs.meta │ │ │ ├── Numeric.meta │ │ │ ├── Numeric │ │ │ │ ├── INumericWatcher.cs │ │ │ │ ├── INumericWatcher.cs.meta │ │ │ │ ├── NumericChangeEvent_NotifyWatcher.cs │ │ │ │ ├── NumericChangeEvent_NotifyWatcher.cs.meta │ │ │ │ ├── NumericComponent.cs │ │ │ │ ├── NumericComponent.cs.meta │ │ │ │ ├── NumericType.cs │ │ │ │ ├── NumericType.cs.meta │ │ │ │ ├── NumericWatcherAttribute.cs │ │ │ │ ├── NumericWatcherAttribute.cs.meta │ │ │ │ ├── NumericWatcherComponent.cs │ │ │ │ ├── NumericWatcherComponent.cs.meta │ │ │ │ ├── NumericWatcher_Hp_ShowUI.cs │ │ │ │ └── NumericWatcher_Hp_ShowUI.cs.meta │ │ │ ├── Pathfinding.meta │ │ │ ├── Pathfinding │ │ │ │ ├── AstarPathfindingProject.meta │ │ │ │ ├── AstarPathfindingProject │ │ │ │ │ ├── Behaviors.meta │ │ │ │ │ ├── Behaviors │ │ │ │ │ │ ├── AIDestinationSetter.cs │ │ │ │ │ │ ├── AIDestinationSetter.cs.meta │ │ │ │ │ │ ├── Patrol.cs │ │ │ │ │ │ └── Patrol.cs.meta │ │ │ │ │ ├── Core.meta │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── AI.meta │ │ │ │ │ │ ├── AI │ │ │ │ │ │ │ ├── AIBase.cs │ │ │ │ │ │ │ ├── AIBase.cs.meta │ │ │ │ │ │ │ ├── AILerp.cs │ │ │ │ │ │ │ ├── AILerp.cs.meta │ │ │ │ │ │ │ ├── AIPath.cs │ │ │ │ │ │ │ ├── AIPath.cs.meta │ │ │ │ │ │ │ ├── IAstarAI.cs │ │ │ │ │ │ │ ├── IAstarAI.cs.meta │ │ │ │ │ │ │ ├── NavmeshController.cs │ │ │ │ │ │ │ ├── NavmeshController.cs.meta │ │ │ │ │ │ │ ├── Seeker.cs │ │ │ │ │ │ │ ├── Seeker.cs.meta │ │ │ │ │ │ │ ├── TurnBasedAI.cs │ │ │ │ │ │ │ └── TurnBasedAI.cs.meta │ │ │ │ │ │ ├── AstarData.cs │ │ │ │ │ │ ├── AstarData.cs.meta │ │ │ │ │ │ ├── AstarPath.cs │ │ │ │ │ │ ├── AstarPath.cs.meta │ │ │ │ │ │ ├── GraphUpdateScene.cs │ │ │ │ │ │ ├── GraphUpdateScene.cs.meta │ │ │ │ │ │ ├── GraphUpdateShape.cs │ │ │ │ │ │ ├── GraphUpdateShape.cs.meta │ │ │ │ │ │ ├── Misc.meta │ │ │ │ │ │ ├── Misc │ │ │ │ │ │ │ ├── AstarDebugger.cs │ │ │ │ │ │ │ ├── AstarDebugger.cs.meta │ │ │ │ │ │ │ ├── Draw.cs │ │ │ │ │ │ │ ├── Draw.cs.meta │ │ │ │ │ │ │ ├── EditorResourceHelper.cs │ │ │ │ │ │ │ ├── EditorResourceHelper.cs.meta │ │ │ │ │ │ │ ├── GraphEditorBase.cs │ │ │ │ │ │ │ ├── GraphEditorBase.cs.meta │ │ │ │ │ │ │ ├── GraphModifier.cs │ │ │ │ │ │ │ ├── GraphModifier.cs.meta │ │ │ │ │ │ │ ├── GraphUpdateProcessor.cs │ │ │ │ │ │ │ ├── GraphUpdateProcessor.cs.meta │ │ │ │ │ │ │ ├── GraphUtilities.cs │ │ │ │ │ │ │ ├── GraphUtilities.cs.meta │ │ │ │ │ │ │ ├── MovementUtilities.cs │ │ │ │ │ │ │ ├── MovementUtilities.cs.meta │ │ │ │ │ │ │ ├── NodeLink.cs │ │ │ │ │ │ │ ├── NodeLink.cs.meta │ │ │ │ │ │ │ ├── PathInterpolator.cs │ │ │ │ │ │ │ ├── PathInterpolator.cs.meta │ │ │ │ │ │ │ ├── StackPool.cs │ │ │ │ │ │ │ ├── StackPool.cs.meta │ │ │ │ │ │ │ ├── WorkItemProcessor.cs │ │ │ │ │ │ │ └── WorkItemProcessor.cs.meta │ │ │ │ │ │ ├── RVO.meta │ │ │ │ │ │ ├── RVO │ │ │ │ │ │ │ ├── RVOAgent.cs │ │ │ │ │ │ │ ├── RVOAgent.cs.meta │ │ │ │ │ │ │ ├── RVOCoreObstacle.cs │ │ │ │ │ │ │ ├── RVOCoreObstacle.cs.meta │ │ │ │ │ │ │ ├── RVOCoreSimulator.cs │ │ │ │ │ │ │ ├── RVOCoreSimulator.cs.meta │ │ │ │ │ │ │ ├── RVOLine.cs │ │ │ │ │ │ │ ├── RVOLine.cs.meta │ │ │ │ │ │ │ ├── RVOQuadtree.cs │ │ │ │ │ │ │ └── RVOQuadtree.cs.meta │ │ │ │ │ │ ├── astarclasses.cs │ │ │ │ │ │ └── astarclasses.cs.meta │ │ │ │ │ ├── ExampleScenes.meta │ │ │ │ │ ├── ExampleScenes │ │ │ │ │ │ ├── Example3_Recast_Navmesh1.meta │ │ │ │ │ │ ├── Example3_Recast_Navmesh1 │ │ │ │ │ │ │ ├── Debris.prefab │ │ │ │ │ │ │ ├── Debris.prefab.meta │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ │ ├── Material.mat │ │ │ │ │ │ │ │ ├── Material.mat.meta │ │ │ │ │ │ │ │ ├── structure2-Material.mat │ │ │ │ │ │ │ │ └── structure2-Material.mat.meta │ │ │ │ │ │ │ ├── MecanimBridge.cs │ │ │ │ │ │ │ ├── MecanimBridge.cs.meta │ │ │ │ │ │ │ ├── RecastExample.meta │ │ │ │ │ │ │ ├── RecastExample.unity │ │ │ │ │ │ │ ├── RecastExample.unity.meta │ │ │ │ │ │ │ └── RecastExample │ │ │ │ │ │ │ │ ├── LightmapFar-0.exr │ │ │ │ │ │ │ │ └── LightmapFar-0.exr.meta │ │ │ │ │ │ ├── ExampleScripts.meta │ │ │ │ │ │ ├── ExampleScripts │ │ │ │ │ │ │ ├── MineBotAnimation.cs │ │ │ │ │ │ │ ├── MineBotAnimation.cs.meta │ │ │ │ │ │ │ ├── RecastTileUpdate.cs │ │ │ │ │ │ │ ├── RecastTileUpdate.cs.meta │ │ │ │ │ │ │ ├── RecastTileUpdateHandler.cs │ │ │ │ │ │ │ ├── RecastTileUpdateHandler.cs.meta │ │ │ │ │ │ │ ├── TargetMover.cs │ │ │ │ │ │ │ └── TargetMover.cs.meta │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ ├── AI.mat │ │ │ │ │ │ │ ├── AI.mat.meta │ │ │ │ │ │ │ ├── BlueBox.mat │ │ │ │ │ │ │ ├── BlueBox.mat.meta │ │ │ │ │ │ │ ├── BlueCheckerGround.mat │ │ │ │ │ │ │ ├── BlueCheckerGround.mat.meta │ │ │ │ │ │ │ ├── BlueGround.mat │ │ │ │ │ │ │ ├── BlueGround.mat.meta │ │ │ │ │ │ │ ├── DiffuseAlwaysVisible.shader │ │ │ │ │ │ │ ├── DiffuseAlwaysVisible.shader.meta │ │ │ │ │ │ │ ├── Door.mat │ │ │ │ │ │ │ ├── Door.mat.meta │ │ │ │ │ │ │ ├── Ground.mat │ │ │ │ │ │ │ ├── Ground.mat.meta │ │ │ │ │ │ │ ├── GroundRTS.mat │ │ │ │ │ │ │ ├── GroundRTS.mat.meta │ │ │ │ │ │ │ ├── OrangeGround.mat │ │ │ │ │ │ │ ├── OrangeGround.mat.meta │ │ │ │ │ │ │ ├── PathBlueArea.mat │ │ │ │ │ │ │ ├── PathBlueArea.mat.meta │ │ │ │ │ │ │ ├── PathGreyCube.mat │ │ │ │ │ │ │ ├── PathGreyCube.mat.meta │ │ │ │ │ │ │ ├── PathRedArea.mat │ │ │ │ │ │ │ ├── PathRedArea.mat.meta │ │ │ │ │ │ │ ├── Projector Light.shader │ │ │ │ │ │ │ ├── Projector Light.shader.meta │ │ │ │ │ │ │ ├── SomeBox.mat │ │ │ │ │ │ │ ├── SomeBox.mat.meta │ │ │ │ │ │ │ ├── Textures.meta │ │ │ │ │ │ │ ├── Textures │ │ │ │ │ │ │ │ ├── Falloff-Reflected.psd │ │ │ │ │ │ │ │ ├── Falloff-Reflected.psd.meta │ │ │ │ │ │ │ │ ├── Falloff.psd │ │ │ │ │ │ │ │ ├── Falloff.psd.meta │ │ │ │ │ │ │ │ ├── Shadow.psd │ │ │ │ │ │ │ │ └── Shadow.psd.meta │ │ │ │ │ │ │ ├── Wall.mat │ │ │ │ │ │ │ └── Wall.mat.meta │ │ │ │ │ │ ├── Prefabs.meta │ │ │ │ │ │ ├── Prefabs │ │ │ │ │ │ │ ├── DynamicObstacle.prefab │ │ │ │ │ │ │ ├── DynamicObstacle.prefab.meta │ │ │ │ │ │ │ ├── MineBot.meta │ │ │ │ │ │ │ ├── MineBot │ │ │ │ │ │ │ │ ├── Materials.meta │ │ │ │ │ │ │ │ ├── Materials │ │ │ │ │ │ │ │ │ ├── Minebot.tif │ │ │ │ │ │ │ │ │ ├── Minebot.tif.meta │ │ │ │ │ │ │ │ │ ├── Minebot_NRM.tif │ │ │ │ │ │ │ │ │ ├── Minebot_NRM.tif.meta │ │ │ │ │ │ │ │ │ ├── mine_bot-01 - Default.mat │ │ │ │ │ │ │ │ │ ├── mine_bot-01 - Default.mat.meta │ │ │ │ │ │ │ │ │ ├── mine_bot-minebot.mat │ │ │ │ │ │ │ │ │ ├── mine_bot-minebot.mat.meta │ │ │ │ │ │ │ │ │ ├── mine_bot@awake-01 - Default.mat │ │ │ │ │ │ │ │ │ ├── mine_bot@awake-01 - Default.mat.meta │ │ │ │ │ │ │ │ │ ├── mine_bot@back-01 - Default.mat │ │ │ │ │ │ │ │ │ ├── mine_bot@back-01 - Default.mat.meta │ │ │ │ │ │ │ │ │ ├── mine_bot@forward-01 - Default.mat │ │ │ │ │ │ │ │ │ ├── mine_bot@forward-01 - Default.mat.meta │ │ │ │ │ │ │ │ │ ├── mine_bot@left-01 - Default.mat │ │ │ │ │ │ │ │ │ ├── mine_bot@left-01 - Default.mat.meta │ │ │ │ │ │ │ │ │ ├── mine_bot@right-01 - Default.mat │ │ │ │ │ │ │ │ │ └── mine_bot@right-01 - Default.mat.meta │ │ │ │ │ │ │ │ ├── mine_bot.FBX │ │ │ │ │ │ │ │ ├── mine_bot.FBX.meta │ │ │ │ │ │ │ │ ├── mine_bot@awake.FBX │ │ │ │ │ │ │ │ ├── mine_bot@awake.FBX.meta │ │ │ │ │ │ │ │ ├── mine_bot@back.FBX │ │ │ │ │ │ │ │ ├── mine_bot@back.FBX.meta │ │ │ │ │ │ │ │ ├── mine_bot@forward.FBX │ │ │ │ │ │ │ │ ├── mine_bot@forward.FBX.meta │ │ │ │ │ │ │ │ ├── mine_bot@left.FBX │ │ │ │ │ │ │ │ ├── mine_bot@left.FBX.meta │ │ │ │ │ │ │ │ ├── mine_bot@right.FBX │ │ │ │ │ │ │ │ └── mine_bot@right.FBX.meta │ │ │ │ │ │ │ ├── SomeBox.prefab │ │ │ │ │ │ │ ├── SomeBox.prefab.meta │ │ │ │ │ │ │ ├── TargetReachedEffect.prefab │ │ │ │ │ │ │ └── TargetReachedEffect.prefab.meta │ │ │ │ │ │ ├── _Example Scenes.txt │ │ │ │ │ │ └── _Example Scenes.txt.meta │ │ │ │ │ ├── Generators.meta │ │ │ │ │ ├── Generators │ │ │ │ │ │ ├── Utilities.meta │ │ │ │ │ │ └── Utilities │ │ │ │ │ │ │ ├── ObjImporter.cs │ │ │ │ │ │ │ ├── ObjImporter.cs.meta │ │ │ │ │ │ │ ├── RecastBBTree.cs │ │ │ │ │ │ │ ├── RecastBBTree.cs.meta │ │ │ │ │ │ │ ├── RecastMeshGatherer.cs │ │ │ │ │ │ │ ├── RecastMeshGatherer.cs.meta │ │ │ │ │ │ │ ├── RecastMeshObj.cs │ │ │ │ │ │ │ ├── RecastMeshObj.cs.meta │ │ │ │ │ │ │ ├── Voxels.meta │ │ │ │ │ │ │ └── Voxels │ │ │ │ │ │ │ ├── VoxelClasses.cs │ │ │ │ │ │ │ ├── VoxelClasses.cs.meta │ │ │ │ │ │ │ ├── VoxelContour.cs │ │ │ │ │ │ │ ├── VoxelContour.cs.meta │ │ │ │ │ │ │ ├── VoxelMesh.cs │ │ │ │ │ │ │ ├── VoxelMesh.cs.meta │ │ │ │ │ │ │ ├── VoxelPolygonClipper.cs │ │ │ │ │ │ │ ├── VoxelPolygonClipper.cs.meta │ │ │ │ │ │ │ ├── VoxelRasterization.cs │ │ │ │ │ │ │ ├── VoxelRasterization.cs.meta │ │ │ │ │ │ │ ├── VoxelRegion.cs │ │ │ │ │ │ │ ├── VoxelRegion.cs.meta │ │ │ │ │ │ │ ├── VoxelUtility.cs │ │ │ │ │ │ │ └── VoxelUtility.cs.meta │ │ │ │ │ ├── MathHelper.cs │ │ │ │ │ ├── MathHelper.cs.meta │ │ │ │ │ ├── Modifiers.meta │ │ │ │ │ ├── Modifiers │ │ │ │ │ │ ├── AdvancedSmooth.cs │ │ │ │ │ │ ├── AdvancedSmooth.cs.meta │ │ │ │ │ │ ├── AlternativePath.cs │ │ │ │ │ │ ├── AlternativePath.cs.meta │ │ │ │ │ │ ├── FunnelModifier.cs │ │ │ │ │ │ ├── FunnelModifier.cs.meta │ │ │ │ │ │ ├── Modifiers.cs │ │ │ │ │ │ ├── Modifiers.cs.meta │ │ │ │ │ │ ├── RadiusModifier.cs │ │ │ │ │ │ ├── RadiusModifier.cs.meta │ │ │ │ │ │ ├── RaycastModifier.cs │ │ │ │ │ │ ├── RaycastModifier.cs.meta │ │ │ │ │ │ ├── SimpleSmoothModifier.cs │ │ │ │ │ │ ├── SimpleSmoothModifier.cs.meta │ │ │ │ │ │ ├── StartEndModifier.cs │ │ │ │ │ │ └── StartEndModifier.cs.meta │ │ │ │ │ ├── Navmesh.meta │ │ │ │ │ ├── Navmesh │ │ │ │ │ │ ├── RelevantGraphSurface.cs │ │ │ │ │ │ └── RelevantGraphSurface.cs.meta │ │ │ │ │ ├── PackageTools.meta │ │ │ │ │ ├── PackageTools │ │ │ │ │ │ ├── EnumFlagAttribute.cs │ │ │ │ │ │ ├── EnumFlagAttribute.cs.meta │ │ │ │ │ │ ├── UniqueComponentAttribute.cs │ │ │ │ │ │ ├── UniqueComponentAttribute.cs.meta │ │ │ │ │ │ ├── VersionedMonoBehaviour.cs │ │ │ │ │ │ └── VersionedMonoBehaviour.cs.meta │ │ │ │ │ ├── RVO.meta │ │ │ │ │ ├── RVO │ │ │ │ │ │ ├── RVOController.cs │ │ │ │ │ │ ├── RVOController.cs.meta │ │ │ │ │ │ ├── RVONavmesh.cs │ │ │ │ │ │ ├── RVONavmesh.cs.meta │ │ │ │ │ │ ├── RVOObstacle.cs │ │ │ │ │ │ ├── RVOObstacle.cs.meta │ │ │ │ │ │ ├── RVOSimulator.cs │ │ │ │ │ │ ├── RVOSimulator.cs.meta │ │ │ │ │ │ ├── RVOSquareObstacle.cs │ │ │ │ │ │ └── RVOSquareObstacle.cs.meta │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── Readme.txt.meta │ │ │ │ │ ├── Readme_upgrading.txt │ │ │ │ │ ├── Readme_upgrading.txt.meta │ │ │ │ │ ├── TurnBased.meta │ │ │ │ │ ├── TurnBased │ │ │ │ │ │ ├── BlockManager.cs │ │ │ │ │ │ ├── BlockManager.cs.meta │ │ │ │ │ │ ├── SingleNodeBlocker.cs │ │ │ │ │ │ └── SingleNodeBlocker.cs.meta │ │ │ │ │ ├── UnityHelper.cs │ │ │ │ │ ├── UnityHelper.cs.meta │ │ │ │ │ ├── Utilities.meta │ │ │ │ │ ├── Utilities │ │ │ │ │ │ ├── AstarParallel.cs │ │ │ │ │ │ ├── AstarParallel.cs.meta │ │ │ │ │ │ ├── AstarProfiler.cs │ │ │ │ │ │ ├── AstarProfiler.cs.meta │ │ │ │ │ │ ├── GraphGizmoHelper.cs │ │ │ │ │ │ ├── GraphGizmoHelper.cs.meta │ │ │ │ │ │ ├── GraphUpdateUtilities.cs │ │ │ │ │ │ ├── GraphUpdateUtilities.cs.meta │ │ │ │ │ │ ├── PathUtilities.cs │ │ │ │ │ │ ├── PathUtilities.cs.meta │ │ │ │ │ │ ├── ProfileHelper.cs │ │ │ │ │ │ ├── ProfileHelper.cs.meta │ │ │ │ │ │ ├── RetainedGizmos.cs │ │ │ │ │ │ ├── RetainedGizmos.cs.meta │ │ │ │ │ │ ├── UnityReferenceHelper.cs │ │ │ │ │ │ └── UnityReferenceHelper.cs.meta │ │ │ │ │ ├── changelog.cs │ │ │ │ │ ├── changelog.cs.meta │ │ │ │ │ ├── defines.csv │ │ │ │ │ ├── defines.csv.meta │ │ │ │ │ ├── documentation.html │ │ │ │ │ ├── documentation.html.meta │ │ │ │ │ ├── link.xml │ │ │ │ │ └── link.xml.meta │ │ │ │ ├── Recast.meta │ │ │ │ └── Recast │ │ │ │ │ ├── AStarConfig.cs │ │ │ │ │ ├── AStarConfig.cs.meta │ │ │ │ │ ├── ArrayPool.cs │ │ │ │ │ ├── ArrayPool.cs.meta │ │ │ │ │ ├── AstarChecksum.cs │ │ │ │ │ ├── AstarChecksum.cs.meta │ │ │ │ │ ├── AstarDeserializer.cs │ │ │ │ │ ├── AstarDeserializer.cs.meta │ │ │ │ │ ├── AstarMath.cs │ │ │ │ │ ├── AstarMath.cs.meta │ │ │ │ │ ├── AstarMemory.cs │ │ │ │ │ ├── AstarMemory.cs.meta │ │ │ │ │ ├── BBTree.cs │ │ │ │ │ ├── BBTree.cs.meta │ │ │ │ │ ├── BinaryHeap.cs │ │ │ │ │ ├── BinaryHeap.cs.meta │ │ │ │ │ ├── EuclideanEmbedding.cs │ │ │ │ │ ├── EuclideanEmbedding.cs.meta │ │ │ │ │ ├── Funnel.cs │ │ │ │ │ ├── Funnel.cs.meta │ │ │ │ │ ├── GraphNode.cs │ │ │ │ │ ├── GraphNode.cs.meta │ │ │ │ │ ├── GraphTransform.cs │ │ │ │ │ ├── GraphTransform.cs.meta │ │ │ │ │ ├── Guid.cs │ │ │ │ │ ├── Guid.cs.meta │ │ │ │ │ ├── INavmesh.cs │ │ │ │ │ ├── INavmesh.cs.meta │ │ │ │ │ ├── Int3.cs │ │ │ │ │ ├── Int3.cs.meta │ │ │ │ │ ├── IntRect.cs │ │ │ │ │ ├── IntRect.cs.meta │ │ │ │ │ ├── ListPool.cs │ │ │ │ │ ├── ListPool.cs.meta │ │ │ │ │ ├── NN.cs │ │ │ │ │ ├── NN.cs.meta │ │ │ │ │ ├── NavGraph.cs │ │ │ │ │ ├── NavGraph.cs.meta │ │ │ │ │ ├── NavmeshBase.cs │ │ │ │ │ ├── NavmeshBase.cs.meta │ │ │ │ │ ├── NavmeshTile.cs │ │ │ │ │ ├── NavmeshTile.cs.meta │ │ │ │ │ ├── ObjectPool.cs │ │ │ │ │ ├── ObjectPool.cs.meta │ │ │ │ │ ├── Path.cs │ │ │ │ │ ├── Path.cs.meta │ │ │ │ │ ├── PathFindHelper.cs │ │ │ │ │ ├── PathFindHelper.cs.meta │ │ │ │ │ ├── PathHandler.cs │ │ │ │ │ ├── PathHandler.cs.meta │ │ │ │ │ ├── PathPool.cs │ │ │ │ │ ├── PathPool.cs.meta │ │ │ │ │ ├── PathProcessor.cs │ │ │ │ │ ├── PathProcessor.cs.meta │ │ │ │ │ ├── PathReturnQueue.cs │ │ │ │ │ ├── PathReturnQueue.cs.meta │ │ │ │ │ ├── Pathfinders.meta │ │ │ │ │ ├── Pathfinders │ │ │ │ │ ├── ABPath.cs │ │ │ │ │ ├── ABPath.cs.meta │ │ │ │ │ ├── ConstantPath.cs │ │ │ │ │ ├── ConstantPath.cs.meta │ │ │ │ │ ├── FleePath.cs │ │ │ │ │ ├── FleePath.cs.meta │ │ │ │ │ ├── FloodPath.cs │ │ │ │ │ ├── FloodPath.cs.meta │ │ │ │ │ ├── FloodPathTracer.cs │ │ │ │ │ ├── FloodPathTracer.cs.meta │ │ │ │ │ ├── MultiTargetPath.cs │ │ │ │ │ ├── MultiTargetPath.cs.meta │ │ │ │ │ ├── RandomPath.cs │ │ │ │ │ ├── RandomPath.cs.meta │ │ │ │ │ ├── XPath.cs │ │ │ │ │ └── XPath.cs.meta │ │ │ │ │ ├── RecastGenerator.cs │ │ │ │ │ ├── RecastGenerator.cs.meta │ │ │ │ │ ├── Serialization.meta │ │ │ │ │ ├── Serialization │ │ │ │ │ ├── JsonSerializer.cs │ │ │ │ │ ├── JsonSerializer.cs.meta │ │ │ │ │ ├── SimpleZipReplacement.cs │ │ │ │ │ ├── SimpleZipReplacement.cs.meta │ │ │ │ │ ├── TinyJson.cs │ │ │ │ │ └── TinyJson.cs.meta │ │ │ │ │ ├── ThreadControlQueue.cs │ │ │ │ │ ├── ThreadControlQueue.cs.meta │ │ │ │ │ ├── TriangleMeshNode.cs │ │ │ │ │ ├── TriangleMeshNode.cs.meta │ │ │ │ │ ├── WindowsStoreCompatibility.cs │ │ │ │ │ └── WindowsStoreCompatibility.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── CanvasConfig.cs │ │ │ │ ├── CanvasConfig.cs.meta │ │ │ │ ├── LayerNames.cs │ │ │ │ ├── LayerNames.cs.meta │ │ │ │ ├── UI.cs │ │ │ │ ├── UI.cs.meta │ │ │ │ ├── UIComponent.cs │ │ │ │ ├── UIComponent.cs.meta │ │ │ │ ├── UIFactoryAttribute.cs │ │ │ │ ├── UIFactoryAttribute.cs.meta │ │ │ │ ├── UIType.cs │ │ │ │ └── UIType.cs.meta │ │ ├── Other.meta │ │ ├── Other │ │ │ ├── AppType.cs │ │ │ ├── AppType.cs.meta │ │ │ ├── Define.cs │ │ │ ├── Define.cs.meta │ │ │ ├── GizmosDebug.cs │ │ │ ├── GizmosDebug.cs.meta │ │ │ ├── IInstanceMethod.cs │ │ │ ├── IInstanceMethod.cs.meta │ │ │ ├── ILStaticMethod.cs │ │ │ ├── ILStaticMethod.cs.meta │ │ │ ├── MonoStaticMethod.cs │ │ │ ├── MonoStaticMethod.cs.meta │ │ │ ├── MotionType.cs │ │ │ ├── MotionType.cs.meta │ │ │ ├── ReferenceCollector.cs │ │ │ └── ReferenceCollector.cs.meta │ │ ├── Unity.Model.asmdef │ │ └── Unity.Model.asmdef.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android.meta │ │ ├── Android │ │ │ ├── libs.meta │ │ │ └── libs │ │ │ │ ├── armeabi-v7a.meta │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── libkcp.so │ │ │ │ └── libkcp.so.meta │ │ │ │ ├── x86.meta │ │ │ │ └── x86 │ │ │ │ ├── libkcp.so │ │ │ │ └── libkcp.so.meta │ │ ├── AstarPathfindingProject.meta │ │ ├── AstarPathfindingProject │ │ │ ├── Clipper.meta │ │ │ ├── Clipper │ │ │ │ ├── ClipperLicense.txt │ │ │ │ ├── ClipperLicense.txt.meta │ │ │ │ ├── Pathfinding.ClipperLib.dll │ │ │ │ └── Pathfinding.ClipperLib.dll.meta │ │ │ ├── DotNetZip.meta │ │ │ ├── DotNetZip │ │ │ │ ├── DotNetZipLicense.txt │ │ │ │ ├── DotNetZipLicense.txt.meta │ │ │ │ ├── Pathfinding.Ionic.Zip.Reduced.dll │ │ │ │ └── Pathfinding.Ionic.Zip.Reduced.dll.meta │ │ │ ├── Poly2Tri.meta │ │ │ ├── Poly2Tri │ │ │ │ ├── Pathfinding.Poly2Tri.dll │ │ │ │ ├── Pathfinding.Poly2Tri.dll.meta │ │ │ │ ├── Poly2TriLicense.txt │ │ │ │ └── Poly2TriLicense.txt.meta │ │ │ ├── dependencies.txt │ │ │ └── dependencies.txt.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── JetBrains.meta │ │ │ ├── JetBrains │ │ │ │ ├── JetBrains.Rider.Unity.Editor.Plugin.Repacked.dll │ │ │ │ └── JetBrains.Rider.Unity.Editor.Plugin.Repacked.dll.meta │ │ │ ├── npoi.meta │ │ │ └── npoi │ │ │ │ ├── NPOI.OOXML.dll │ │ │ │ ├── NPOI.OOXML.dll.meta │ │ │ │ ├── NPOI.OpenXml4Net.dll │ │ │ │ ├── NPOI.OpenXml4Net.dll.meta │ │ │ │ ├── NPOI.OpenXmlFormats.dll │ │ │ │ ├── NPOI.OpenXmlFormats.dll.meta │ │ │ │ ├── NPOI.dll │ │ │ │ └── NPOI.dll.meta │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── ICSharpCode.SharpZipLib.dll.meta │ │ ├── MacOS.meta │ │ ├── MacOS │ │ │ ├── kcp.bundle.meta │ │ │ └── kcp.bundle │ │ │ │ ├── Contents.meta │ │ │ │ └── Contents │ │ │ │ ├── MacOS.meta │ │ │ │ └── MacOS │ │ │ │ ├── kcp │ │ │ │ └── kcp.meta │ │ ├── iOS.meta │ │ ├── iOS │ │ │ ├── kcp.a │ │ │ └── kcp.a.meta │ │ ├── x86.meta │ │ ├── x86 │ │ │ ├── kcp.dll │ │ │ └── kcp.dll.meta │ │ ├── x86_64.meta │ │ └── x86_64 │ │ │ ├── kcp.dll │ │ │ └── kcp.dll.meta │ ├── Res.meta │ ├── Res │ │ ├── Code.meta │ │ ├── Code │ │ │ ├── Hotfix.dll.bytes │ │ │ ├── Hotfix.dll.bytes.meta │ │ │ ├── Hotfix.pdb.bytes │ │ │ └── Hotfix.pdb.bytes.meta │ │ ├── Config.meta │ │ ├── Config │ │ │ ├── BuffConfig.txt │ │ │ ├── BuffConfig.txt.meta │ │ │ ├── GlobalProto.txt │ │ │ ├── GlobalProto.txt.meta │ │ │ ├── UnitConfig.txt │ │ │ └── UnitConfig.txt.meta │ │ ├── Unit.meta │ │ └── Unit │ │ │ ├── Skeleton.meta │ │ │ └── Skeleton │ │ │ ├── Ani.meta │ │ │ ├── Ani │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── skeleton_D.mat │ │ │ │ └── skeleton_D.mat.meta │ │ │ ├── Skeleton@Attack.FBX │ │ │ ├── Skeleton@Attack.FBX.meta │ │ │ ├── Skeleton@Damage.FBX │ │ │ ├── Skeleton@Damage.FBX.meta │ │ │ ├── Skeleton@Death.FBX │ │ │ ├── Skeleton@Death.FBX.meta │ │ │ ├── Skeleton@Idle.FBX │ │ │ ├── Skeleton@Idle.FBX.meta │ │ │ ├── Skeleton@Knockback.FBX │ │ │ ├── Skeleton@Knockback.FBX.meta │ │ │ ├── Skeleton@Run.FBX │ │ │ ├── Skeleton@Run.FBX.meta │ │ │ ├── Skeleton@Skill.FBX │ │ │ ├── Skeleton@Skill.FBX.meta │ │ │ ├── Skeleton@Stand.FBX │ │ │ ├── Skeleton@Stand.FBX.meta │ │ │ ├── Skeleton@Walk.FBX │ │ │ └── Skeleton@Walk.FBX.meta │ │ │ ├── Character.meta │ │ │ ├── Character │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── skeleton_D.mat │ │ │ │ └── skeleton_D.mat.meta │ │ │ ├── Skeleton@Skin.FBX │ │ │ └── Skeleton@Skin.FBX.meta │ │ │ ├── Skeleton.prefab │ │ │ ├── Skeleton.prefab.meta │ │ │ ├── SkeletonController.controller │ │ │ ├── SkeletonController.controller.meta │ │ │ ├── Texture.meta │ │ │ └── Texture │ │ │ ├── Skeleton_D.tif │ │ │ └── Skeleton_D.tif.meta │ ├── Resources.meta │ ├── Resources │ │ ├── KV.prefab │ │ ├── KV.prefab.meta │ │ ├── Shader.meta │ │ ├── Shader │ │ │ ├── Plane.mat │ │ │ └── Plane.mat.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── UILoading.prefab │ │ │ └── UILoading.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Init.unity │ │ ├── Init.unity.meta │ │ ├── Map.meta │ │ ├── Map.unity │ │ ├── Map.unity.meta │ │ └── Map │ │ │ ├── LightingData.asset │ │ │ ├── LightingData.asset.meta │ │ │ ├── Lightmap-0_comp_light.exr │ │ │ ├── Lightmap-0_comp_light.exr.meta │ │ │ ├── ReflectionProbe-0.exr │ │ │ └── ReflectionProbe-0.exr.meta │ ├── StreamingAssets.meta │ ├── StreamingAssets │ │ ├── Version.txt │ │ └── Version.txt.meta │ ├── ThirdParty.meta │ ├── ThirdParty │ │ ├── Google.Protobuf.meta │ │ ├── Google.Protobuf │ │ │ ├── AdaptHelper.cs │ │ │ ├── AdaptHelper.cs.meta │ │ │ ├── ByteArray.cs │ │ │ ├── ByteArray.cs.meta │ │ │ ├── ByteString.cs │ │ │ ├── ByteString.cs.meta │ │ │ ├── CodedInputStream.cs │ │ │ ├── CodedInputStream.cs.meta │ │ │ ├── CodedOutputStream.ComputeSize.cs │ │ │ ├── CodedOutputStream.ComputeSize.cs.meta │ │ │ ├── CodedOutputStream.cs │ │ │ ├── CodedOutputStream.cs.meta │ │ │ ├── FieldCodec.cs │ │ │ ├── FieldCodec.cs.meta │ │ │ ├── ICustomDiagnosticMessage.cs │ │ │ ├── ICustomDiagnosticMessage.cs.meta │ │ │ ├── IMessage.cs │ │ │ ├── IMessage.cs.meta │ │ │ ├── InvalidProtocolBufferException.cs │ │ │ ├── InvalidProtocolBufferException.cs.meta │ │ │ ├── LimitedInputStream.cs │ │ │ ├── LimitedInputStream.cs.meta │ │ │ ├── MessageExtensions.cs │ │ │ ├── MessageExtensions.cs.meta │ │ │ ├── MessageParser.cs │ │ │ ├── MessageParser.cs.meta │ │ │ ├── PropertyInfoExtensions.cs │ │ │ ├── PropertyInfoExtensions.cs.meta │ │ │ ├── ProtoPreconditions.cs │ │ │ ├── ProtoPreconditions.cs.meta │ │ │ ├── RepeatedField.cs │ │ │ ├── RepeatedField.cs.meta │ │ │ ├── StreamExtensions.cs │ │ │ ├── StreamExtensions.cs.meta │ │ │ ├── WireFormat.cs │ │ │ └── WireFormat.cs.meta │ │ ├── ILRuntime.meta │ │ ├── ILRuntime │ │ │ ├── ILRuntime.meta │ │ │ ├── ILRuntime │ │ │ │ ├── CLR.meta │ │ │ │ ├── CLR │ │ │ │ │ ├── Method.meta │ │ │ │ │ ├── Method │ │ │ │ │ │ ├── CLRMethod.cs │ │ │ │ │ │ ├── CLRMethod.cs.meta │ │ │ │ │ │ ├── ExceptionHandler.cs │ │ │ │ │ │ ├── ExceptionHandler.cs.meta │ │ │ │ │ │ ├── ILMethod.cs │ │ │ │ │ │ ├── ILMethod.cs.meta │ │ │ │ │ │ ├── IMethod.cs │ │ │ │ │ │ └── IMethod.cs.meta │ │ │ │ │ ├── TypeSystem.meta │ │ │ │ │ ├── TypeSystem │ │ │ │ │ │ ├── CLRType.cs │ │ │ │ │ │ ├── CLRType.cs.meta │ │ │ │ │ │ ├── ILGenericParameterType.cs │ │ │ │ │ │ ├── ILGenericParameterType.cs.meta │ │ │ │ │ │ ├── ILType.cs │ │ │ │ │ │ ├── ILType.cs.meta │ │ │ │ │ │ ├── IType.cs │ │ │ │ │ │ └── IType.cs.meta │ │ │ │ │ ├── Utils.meta │ │ │ │ │ └── Utils │ │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ │ └── Extensions.cs.meta │ │ │ │ ├── Other.meta │ │ │ │ ├── Other │ │ │ │ │ ├── ByReferenceKeyComparer.cs │ │ │ │ │ ├── ByReferenceKeyComparer.cs.meta │ │ │ │ │ ├── DelegateExportAttribute.cs │ │ │ │ │ ├── DelegateExportAttribute.cs.meta │ │ │ │ │ ├── NeedAdaptorAttribute.cs │ │ │ │ │ ├── NeedAdaptorAttribute.cs.meta │ │ │ │ │ ├── ThreadSafeDictionary.cs │ │ │ │ │ ├── ThreadSafeDictionary.cs.meta │ │ │ │ │ ├── UncheckedList.cs │ │ │ │ │ └── UncheckedList.cs.meta │ │ │ │ ├── Reflection.meta │ │ │ │ ├── Reflection │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Extensions.cs.meta │ │ │ │ │ ├── ILRuntimeConstructorInfo.cs │ │ │ │ │ ├── ILRuntimeConstructorInfo.cs.meta │ │ │ │ │ ├── ILRuntimeFieldInfo.cs │ │ │ │ │ ├── ILRuntimeFieldInfo.cs.meta │ │ │ │ │ ├── ILRuntimeMethodInfo.cs │ │ │ │ │ ├── ILRuntimeMethodInfo.cs.meta │ │ │ │ │ ├── ILRuntimeParameterInfo.cs │ │ │ │ │ ├── ILRuntimeParameterInfo.cs.meta │ │ │ │ │ ├── ILRuntimePropertyInfo.cs │ │ │ │ │ ├── ILRuntimePropertyInfo.cs.meta │ │ │ │ │ ├── ILRuntimeType.cs │ │ │ │ │ ├── ILRuntimeType.cs.meta │ │ │ │ │ ├── ILRuntimeWrapperType.cs │ │ │ │ │ └── ILRuntimeWrapperType.cs.meta │ │ │ │ ├── Runtime.meta │ │ │ │ └── Runtime │ │ │ │ │ ├── Adaptors.meta │ │ │ │ │ ├── Adaptors │ │ │ │ │ ├── CLRCrossBindingAdaptors.cs │ │ │ │ │ └── CLRCrossBindingAdaptors.cs.meta │ │ │ │ │ ├── CLRBinding.meta │ │ │ │ │ ├── CLRBinding │ │ │ │ │ ├── BindingCodeGenerator.cs │ │ │ │ │ ├── BindingCodeGenerator.cs.meta │ │ │ │ │ ├── BindingGeneratorExtensions.cs │ │ │ │ │ ├── BindingGeneratorExtensions.cs.meta │ │ │ │ │ ├── CommonBindingGenerator.cs │ │ │ │ │ ├── CommonBindingGenerator.cs.meta │ │ │ │ │ ├── ConstructorBindingGenerator.cs │ │ │ │ │ ├── ConstructorBindingGenerator.cs.meta │ │ │ │ │ ├── FieldBindingGenerator.cs │ │ │ │ │ ├── FieldBindingGenerator.cs.meta │ │ │ │ │ ├── MethodBindingGenerator.cs │ │ │ │ │ ├── MethodBindingGenerator.cs.meta │ │ │ │ │ ├── ValueTypeBindingGenerator.cs │ │ │ │ │ └── ValueTypeBindingGenerator.cs.meta │ │ │ │ │ ├── Debugger.meta │ │ │ │ │ ├── Debugger │ │ │ │ │ ├── BreakPointContext.cs │ │ │ │ │ ├── BreakPointContext.cs.meta │ │ │ │ │ ├── BreakpointInfo.cs │ │ │ │ │ ├── BreakpointInfo.cs.meta │ │ │ │ │ ├── DebugMessageType.cs │ │ │ │ │ ├── DebugMessageType.cs.meta │ │ │ │ │ ├── DebugService.cs │ │ │ │ │ ├── DebugService.cs.meta │ │ │ │ │ ├── DebugSocket.cs │ │ │ │ │ ├── DebugSocket.cs.meta │ │ │ │ │ ├── DebuggerServer.meta │ │ │ │ │ ├── DebuggerServer │ │ │ │ │ │ ├── DebuggerServer.cs │ │ │ │ │ │ └── DebuggerServer.cs.meta │ │ │ │ │ ├── Protocol.meta │ │ │ │ │ ├── Protocol │ │ │ │ │ │ ├── CSBindBreakpoint.cs │ │ │ │ │ │ ├── CSBindBreakpoint.cs.meta │ │ │ │ │ │ ├── CSDeleteBreakpoint.cs │ │ │ │ │ │ ├── CSDeleteBreakpoint.cs.meta │ │ │ │ │ │ ├── CSEnumChildren.cs │ │ │ │ │ │ ├── CSEnumChildren.cs.meta │ │ │ │ │ │ ├── CSExecute.cs │ │ │ │ │ │ ├── CSExecute.cs.meta │ │ │ │ │ │ ├── CSResolveIndexer.cs │ │ │ │ │ │ ├── CSResolveIndexer.cs.meta │ │ │ │ │ │ ├── CSResolveVariable.cs │ │ │ │ │ │ ├── CSResolveVariable.cs.meta │ │ │ │ │ │ ├── CSStep.cs │ │ │ │ │ │ ├── CSStep.cs.meta │ │ │ │ │ │ ├── SCAttachResult.cs │ │ │ │ │ │ ├── SCAttachResult.cs.meta │ │ │ │ │ │ ├── SCBindBreakpointResult.cs │ │ │ │ │ │ ├── SCBindBreakpointResult.cs.meta │ │ │ │ │ │ ├── SCBreakpointHit.cs │ │ │ │ │ │ ├── SCBreakpointHit.cs.meta │ │ │ │ │ │ ├── SCEnumChildrenResult.cs │ │ │ │ │ │ ├── SCEnumChildrenResult.cs.meta │ │ │ │ │ │ ├── SCModuleLoaded.cs │ │ │ │ │ │ ├── SCModuleLoaded.cs.meta │ │ │ │ │ │ ├── SCResolveVariableResult.cs │ │ │ │ │ │ ├── SCResolveVariableResult.cs.meta │ │ │ │ │ │ ├── SCStepComplete.cs │ │ │ │ │ │ ├── SCStepComplete.cs.meta │ │ │ │ │ │ ├── SCThreadStarted.cs │ │ │ │ │ │ └── SCThreadStarted.cs.meta │ │ │ │ │ ├── StackFrameInfo.cs │ │ │ │ │ ├── StackFrameInfo.cs.meta │ │ │ │ │ ├── StepTypes.cs │ │ │ │ │ ├── StepTypes.cs.meta │ │ │ │ │ ├── VariableInfo.cs │ │ │ │ │ └── VariableInfo.cs.meta │ │ │ │ │ ├── Enviorment.meta │ │ │ │ │ ├── Enviorment │ │ │ │ │ ├── AppDomain.cs │ │ │ │ │ ├── AppDomain.cs.meta │ │ │ │ │ ├── CLRRedirections.cs │ │ │ │ │ ├── CLRRedirections.cs.meta │ │ │ │ │ ├── CrossBindingAdaptor.cs │ │ │ │ │ ├── CrossBindingAdaptor.cs.meta │ │ │ │ │ ├── DelegateManager.cs │ │ │ │ │ ├── DelegateManager.cs.meta │ │ │ │ │ ├── InvocationContext.cs │ │ │ │ │ ├── InvocationContext.cs.meta │ │ │ │ │ ├── ValueTypeBinder.cs │ │ │ │ │ └── ValueTypeBinder.cs.meta │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── Extensions.cs.meta │ │ │ │ │ ├── Intepreter.meta │ │ │ │ │ ├── Intepreter │ │ │ │ │ ├── DelegateAdapter.cs │ │ │ │ │ ├── DelegateAdapter.cs.meta │ │ │ │ │ ├── ILIntepreter.cs │ │ │ │ │ ├── ILIntepreter.cs.meta │ │ │ │ │ ├── ILRuntimeException.cs │ │ │ │ │ ├── ILRuntimeException.cs.meta │ │ │ │ │ ├── ILTypeInstance.cs │ │ │ │ │ ├── ILTypeInstance.cs.meta │ │ │ │ │ ├── OpCodes.meta │ │ │ │ │ └── OpCodes │ │ │ │ │ │ ├── OpCode.cs │ │ │ │ │ │ ├── OpCode.cs.meta │ │ │ │ │ │ ├── OpCodeEnum.cs │ │ │ │ │ │ └── OpCodeEnum.cs.meta │ │ │ │ │ ├── Stack.meta │ │ │ │ │ └── Stack │ │ │ │ │ ├── RuntimeStack.cs │ │ │ │ │ ├── RuntimeStack.cs.meta │ │ │ │ │ ├── StackFrame.cs │ │ │ │ │ ├── StackFrame.cs.meta │ │ │ │ │ ├── StackObject.cs │ │ │ │ │ └── StackObject.cs.meta │ │ │ ├── LitJson.meta │ │ │ ├── LitJson │ │ │ │ ├── IJsonWrapper.cs │ │ │ │ ├── IJsonWrapper.cs.meta │ │ │ │ ├── JsonData.cs │ │ │ │ ├── JsonData.cs.meta │ │ │ │ ├── JsonException.cs │ │ │ │ ├── JsonException.cs.meta │ │ │ │ ├── JsonMapper.cs │ │ │ │ ├── JsonMapper.cs.meta │ │ │ │ ├── JsonMockWrapper.cs │ │ │ │ ├── JsonMockWrapper.cs.meta │ │ │ │ ├── JsonReader.cs │ │ │ │ ├── JsonReader.cs.meta │ │ │ │ ├── JsonWriter.cs │ │ │ │ ├── JsonWriter.cs.meta │ │ │ │ ├── Lexer.cs │ │ │ │ ├── Lexer.cs.meta │ │ │ │ ├── ParserToken.cs │ │ │ │ └── ParserToken.cs.meta │ │ │ ├── Mono.Cecil.meta │ │ │ ├── Mono.Cecil │ │ │ │ ├── .gitignore │ │ │ │ ├── Mono.Cecil.Cil.meta │ │ │ │ ├── Mono.Cecil.Cil │ │ │ │ │ ├── Code.cs │ │ │ │ │ ├── Code.cs.meta │ │ │ │ │ ├── CodeReader.cs │ │ │ │ │ ├── CodeReader.cs.meta │ │ │ │ │ ├── CodeWriter.cs │ │ │ │ │ ├── CodeWriter.cs.meta │ │ │ │ │ ├── Document.cs │ │ │ │ │ ├── Document.cs.meta │ │ │ │ │ ├── ExceptionHandler.cs │ │ │ │ │ ├── ExceptionHandler.cs.meta │ │ │ │ │ ├── ILProcessor.cs │ │ │ │ │ ├── ILProcessor.cs.meta │ │ │ │ │ ├── Instruction.cs │ │ │ │ │ ├── Instruction.cs.meta │ │ │ │ │ ├── MethodBody.cs │ │ │ │ │ ├── MethodBody.cs.meta │ │ │ │ │ ├── OpCode.cs │ │ │ │ │ ├── OpCode.cs.meta │ │ │ │ │ ├── OpCodes.cs │ │ │ │ │ ├── OpCodes.cs.meta │ │ │ │ │ ├── PortablePdb.cs │ │ │ │ │ ├── PortablePdb.cs.meta │ │ │ │ │ ├── SequencePoint.cs │ │ │ │ │ ├── SequencePoint.cs.meta │ │ │ │ │ ├── Symbols.cs │ │ │ │ │ ├── Symbols.cs.meta │ │ │ │ │ ├── VariableDefinition.cs │ │ │ │ │ ├── VariableDefinition.cs.meta │ │ │ │ │ ├── VariableReference.cs │ │ │ │ │ └── VariableReference.cs.meta │ │ │ │ ├── Mono.Cecil.Metadata.meta │ │ │ │ ├── Mono.Cecil.Metadata │ │ │ │ │ ├── BlobHeap.cs │ │ │ │ │ ├── BlobHeap.cs.meta │ │ │ │ │ ├── Buffers.cs │ │ │ │ │ ├── Buffers.cs.meta │ │ │ │ │ ├── CodedIndex.cs │ │ │ │ │ ├── CodedIndex.cs.meta │ │ │ │ │ ├── ElementType.cs │ │ │ │ │ ├── ElementType.cs.meta │ │ │ │ │ ├── GuidHeap.cs │ │ │ │ │ ├── GuidHeap.cs.meta │ │ │ │ │ ├── Heap.cs │ │ │ │ │ ├── Heap.cs.meta │ │ │ │ │ ├── MetadataToken.cs │ │ │ │ │ ├── MetadataToken.cs.meta │ │ │ │ │ ├── PdbHeap.cs │ │ │ │ │ ├── PdbHeap.cs.meta │ │ │ │ │ ├── Row.cs │ │ │ │ │ ├── Row.cs.meta │ │ │ │ │ ├── StringHeap.cs │ │ │ │ │ ├── StringHeap.cs.meta │ │ │ │ │ ├── TableHeap.cs │ │ │ │ │ ├── TableHeap.cs.meta │ │ │ │ │ ├── TokenType.cs │ │ │ │ │ ├── TokenType.cs.meta │ │ │ │ │ ├── UserStringHeap.cs │ │ │ │ │ ├── UserStringHeap.cs.meta │ │ │ │ │ ├── Utilities.cs │ │ │ │ │ └── Utilities.cs.meta │ │ │ │ ├── Mono.Cecil.PE.meta │ │ │ │ ├── Mono.Cecil.PE │ │ │ │ │ ├── BinaryStreamReader.cs │ │ │ │ │ ├── BinaryStreamReader.cs.meta │ │ │ │ │ ├── BinaryStreamWriter.cs │ │ │ │ │ ├── BinaryStreamWriter.cs.meta │ │ │ │ │ ├── ByteBuffer.cs │ │ │ │ │ ├── ByteBuffer.cs.meta │ │ │ │ │ ├── ByteBufferEqualityComparer.cs │ │ │ │ │ ├── ByteBufferEqualityComparer.cs.meta │ │ │ │ │ ├── DataDirectory.cs │ │ │ │ │ ├── DataDirectory.cs.meta │ │ │ │ │ ├── Image.cs │ │ │ │ │ ├── Image.cs.meta │ │ │ │ │ ├── ImageReader.cs │ │ │ │ │ ├── ImageReader.cs.meta │ │ │ │ │ ├── ImageWriter.cs │ │ │ │ │ ├── ImageWriter.cs.meta │ │ │ │ │ ├── Section.cs │ │ │ │ │ ├── Section.cs.meta │ │ │ │ │ ├── TextMap.cs │ │ │ │ │ └── TextMap.cs.meta │ │ │ │ ├── Mono.Cecil.meta │ │ │ │ ├── Mono.Cecil │ │ │ │ │ ├── ArrayType.cs │ │ │ │ │ ├── ArrayType.cs.meta │ │ │ │ │ ├── AssemblyDefinition.cs │ │ │ │ │ ├── AssemblyDefinition.cs.meta │ │ │ │ │ ├── AssemblyFlags.cs │ │ │ │ │ ├── AssemblyFlags.cs.meta │ │ │ │ │ ├── AssemblyHashAlgorithm.cs │ │ │ │ │ ├── AssemblyHashAlgorithm.cs.meta │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── AssemblyInfo.cs.meta │ │ │ │ │ ├── AssemblyLinkedResource.cs │ │ │ │ │ ├── AssemblyLinkedResource.cs.meta │ │ │ │ │ ├── AssemblyNameDefinition.cs │ │ │ │ │ ├── AssemblyNameDefinition.cs.meta │ │ │ │ │ ├── AssemblyNameReference.cs │ │ │ │ │ ├── AssemblyNameReference.cs.meta │ │ │ │ │ ├── AssemblyReader.cs │ │ │ │ │ ├── AssemblyReader.cs.meta │ │ │ │ │ ├── AssemblyWriter.cs │ │ │ │ │ ├── AssemblyWriter.cs.meta │ │ │ │ │ ├── BaseAssemblyResolver.cs │ │ │ │ │ ├── BaseAssemblyResolver.cs.meta │ │ │ │ │ ├── CallSite.cs │ │ │ │ │ ├── CallSite.cs.meta │ │ │ │ │ ├── Consts.cs │ │ │ │ │ ├── Consts.cs.meta │ │ │ │ │ ├── CustomAttribute.cs │ │ │ │ │ ├── CustomAttribute.cs.meta │ │ │ │ │ ├── DefaultAssemblyResolver.cs │ │ │ │ │ ├── DefaultAssemblyResolver.cs.meta │ │ │ │ │ ├── EmbeddedResource.cs │ │ │ │ │ ├── EmbeddedResource.cs.meta │ │ │ │ │ ├── EventAttributes.cs │ │ │ │ │ ├── EventAttributes.cs.meta │ │ │ │ │ ├── EventDefinition.cs │ │ │ │ │ ├── EventDefinition.cs.meta │ │ │ │ │ ├── EventReference.cs │ │ │ │ │ ├── EventReference.cs.meta │ │ │ │ │ ├── ExportedType.cs │ │ │ │ │ ├── ExportedType.cs.meta │ │ │ │ │ ├── FieldAttributes.cs │ │ │ │ │ ├── FieldAttributes.cs.meta │ │ │ │ │ ├── FieldDefinition.cs │ │ │ │ │ ├── FieldDefinition.cs.meta │ │ │ │ │ ├── FieldReference.cs │ │ │ │ │ ├── FieldReference.cs.meta │ │ │ │ │ ├── FileAttributes.cs │ │ │ │ │ ├── FileAttributes.cs.meta │ │ │ │ │ ├── FunctionPointerType.cs │ │ │ │ │ ├── FunctionPointerType.cs.meta │ │ │ │ │ ├── GenericInstanceMethod.cs │ │ │ │ │ ├── GenericInstanceMethod.cs.meta │ │ │ │ │ ├── GenericInstanceType.cs │ │ │ │ │ ├── GenericInstanceType.cs.meta │ │ │ │ │ ├── GenericParameter.cs │ │ │ │ │ ├── GenericParameter.cs.meta │ │ │ │ │ ├── GenericParameterAttributes.cs │ │ │ │ │ ├── GenericParameterAttributes.cs.meta │ │ │ │ │ ├── IConstantProvider.cs │ │ │ │ │ ├── IConstantProvider.cs.meta │ │ │ │ │ ├── ICustomAttributeProvider.cs │ │ │ │ │ ├── ICustomAttributeProvider.cs.meta │ │ │ │ │ ├── IGenericInstance.cs │ │ │ │ │ ├── IGenericInstance.cs.meta │ │ │ │ │ ├── IGenericParameterProvider.cs │ │ │ │ │ ├── IGenericParameterProvider.cs.meta │ │ │ │ │ ├── IMarshalInfoProvider.cs │ │ │ │ │ ├── IMarshalInfoProvider.cs.meta │ │ │ │ │ ├── IMemberDefinition.cs │ │ │ │ │ ├── IMemberDefinition.cs.meta │ │ │ │ │ ├── IMetadataScope.cs │ │ │ │ │ ├── IMetadataScope.cs.meta │ │ │ │ │ ├── IMetadataTokenProvider.cs │ │ │ │ │ ├── IMetadataTokenProvider.cs.meta │ │ │ │ │ ├── IMethodSignature.cs │ │ │ │ │ ├── IMethodSignature.cs.meta │ │ │ │ │ ├── Import.cs │ │ │ │ │ ├── Import.cs.meta │ │ │ │ │ ├── LinkedResource.cs │ │ │ │ │ ├── LinkedResource.cs.meta │ │ │ │ │ ├── ManifestResourceAttributes.cs │ │ │ │ │ ├── ManifestResourceAttributes.cs.meta │ │ │ │ │ ├── MarshalInfo.cs │ │ │ │ │ ├── MarshalInfo.cs.meta │ │ │ │ │ ├── MemberDefinitionCollection.cs │ │ │ │ │ ├── MemberDefinitionCollection.cs.meta │ │ │ │ │ ├── MemberReference.cs │ │ │ │ │ ├── MemberReference.cs.meta │ │ │ │ │ ├── MetadataResolver.cs │ │ │ │ │ ├── MetadataResolver.cs.meta │ │ │ │ │ ├── MetadataSystem.cs │ │ │ │ │ ├── MetadataSystem.cs.meta │ │ │ │ │ ├── MethodAttributes.cs │ │ │ │ │ ├── MethodAttributes.cs.meta │ │ │ │ │ ├── MethodCallingConvention.cs │ │ │ │ │ ├── MethodCallingConvention.cs.meta │ │ │ │ │ ├── MethodDefinition.cs │ │ │ │ │ ├── MethodDefinition.cs.meta │ │ │ │ │ ├── MethodImplAttributes.cs │ │ │ │ │ ├── MethodImplAttributes.cs.meta │ │ │ │ │ ├── MethodReference.cs │ │ │ │ │ ├── MethodReference.cs.meta │ │ │ │ │ ├── MethodReturnType.cs │ │ │ │ │ ├── MethodReturnType.cs.meta │ │ │ │ │ ├── MethodSemanticsAttributes.cs │ │ │ │ │ ├── MethodSemanticsAttributes.cs.meta │ │ │ │ │ ├── MethodSpecification.cs │ │ │ │ │ ├── MethodSpecification.cs.meta │ │ │ │ │ ├── Modifiers.cs │ │ │ │ │ ├── Modifiers.cs.meta │ │ │ │ │ ├── ModuleDefinition.cs │ │ │ │ │ ├── ModuleDefinition.cs.meta │ │ │ │ │ ├── ModuleKind.cs │ │ │ │ │ ├── ModuleKind.cs.meta │ │ │ │ │ ├── ModuleReference.cs │ │ │ │ │ ├── ModuleReference.cs.meta │ │ │ │ │ ├── NativeType.cs │ │ │ │ │ ├── NativeType.cs.meta │ │ │ │ │ ├── PInvokeAttributes.cs │ │ │ │ │ ├── PInvokeAttributes.cs.meta │ │ │ │ │ ├── PInvokeInfo.cs │ │ │ │ │ ├── PInvokeInfo.cs.meta │ │ │ │ │ ├── ParameterAttributes.cs │ │ │ │ │ ├── ParameterAttributes.cs.meta │ │ │ │ │ ├── ParameterDefinition.cs │ │ │ │ │ ├── ParameterDefinition.cs.meta │ │ │ │ │ ├── ParameterDefinitionCollection.cs │ │ │ │ │ ├── ParameterDefinitionCollection.cs.meta │ │ │ │ │ ├── ParameterReference.cs │ │ │ │ │ ├── ParameterReference.cs.meta │ │ │ │ │ ├── PinnedType.cs │ │ │ │ │ ├── PinnedType.cs.meta │ │ │ │ │ ├── PointerType.cs │ │ │ │ │ ├── PointerType.cs.meta │ │ │ │ │ ├── PropertyAttributes.cs │ │ │ │ │ ├── PropertyAttributes.cs.meta │ │ │ │ │ ├── PropertyDefinition.cs │ │ │ │ │ ├── PropertyDefinition.cs.meta │ │ │ │ │ ├── PropertyReference.cs │ │ │ │ │ ├── PropertyReference.cs.meta │ │ │ │ │ ├── ReferenceType.cs │ │ │ │ │ ├── ReferenceType.cs.meta │ │ │ │ │ ├── Resource.cs │ │ │ │ │ ├── Resource.cs.meta │ │ │ │ │ ├── SecurityDeclaration.cs │ │ │ │ │ ├── SecurityDeclaration.cs.meta │ │ │ │ │ ├── SentinelType.cs │ │ │ │ │ ├── SentinelType.cs.meta │ │ │ │ │ ├── TargetRuntime.cs │ │ │ │ │ ├── TargetRuntime.cs.meta │ │ │ │ │ ├── Treatments.cs │ │ │ │ │ ├── Treatments.cs.meta │ │ │ │ │ ├── TypeAttributes.cs │ │ │ │ │ ├── TypeAttributes.cs.meta │ │ │ │ │ ├── TypeDefinition.cs │ │ │ │ │ ├── TypeDefinition.cs.meta │ │ │ │ │ ├── TypeDefinitionCollection.cs │ │ │ │ │ ├── TypeDefinitionCollection.cs.meta │ │ │ │ │ ├── TypeParser.cs │ │ │ │ │ ├── TypeParser.cs.meta │ │ │ │ │ ├── TypeReference.cs │ │ │ │ │ ├── TypeReference.cs.meta │ │ │ │ │ ├── TypeSpecification.cs │ │ │ │ │ ├── TypeSpecification.cs.meta │ │ │ │ │ ├── TypeSystem.cs │ │ │ │ │ ├── TypeSystem.cs.meta │ │ │ │ │ ├── VariantType.cs │ │ │ │ │ ├── VariantType.cs.meta │ │ │ │ │ ├── WindowsRuntimeProjections.cs │ │ │ │ │ └── WindowsRuntimeProjections.cs.meta │ │ │ │ ├── Mono.Collections.Generic.meta │ │ │ │ ├── Mono.Collections.Generic │ │ │ │ │ ├── Collection.cs │ │ │ │ │ ├── Collection.cs.meta │ │ │ │ │ ├── ReadOnlyCollection.cs │ │ │ │ │ └── ReadOnlyCollection.cs.meta │ │ │ │ ├── Mono.Security.Cryptography.meta │ │ │ │ ├── Mono.Security.Cryptography │ │ │ │ │ ├── CryptoConvert.cs │ │ │ │ │ ├── CryptoConvert.cs.meta │ │ │ │ │ ├── CryptoService.cs │ │ │ │ │ └── CryptoService.cs.meta │ │ │ │ ├── Mono.meta │ │ │ │ ├── Mono │ │ │ │ │ ├── Disposable.cs │ │ │ │ │ ├── Disposable.cs.meta │ │ │ │ │ ├── Empty.cs │ │ │ │ │ ├── Empty.cs.meta │ │ │ │ │ ├── Type.cs │ │ │ │ │ └── Type.cs.meta │ │ │ │ ├── symbols.meta │ │ │ │ └── symbols │ │ │ │ │ ├── pdb.meta │ │ │ │ │ └── pdb │ │ │ │ │ ├── Microsoft.Cci.Pdb.meta │ │ │ │ │ ├── Microsoft.Cci.Pdb │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── BitAccess.cs │ │ │ │ │ ├── BitAccess.cs.meta │ │ │ │ │ ├── BitSet.cs │ │ │ │ │ ├── BitSet.cs.meta │ │ │ │ │ ├── CvInfo.cs │ │ │ │ │ ├── CvInfo.cs.meta │ │ │ │ │ ├── DataStream.cs │ │ │ │ │ ├── DataStream.cs.meta │ │ │ │ │ ├── DbiDbgHdr.cs │ │ │ │ │ ├── DbiDbgHdr.cs.meta │ │ │ │ │ ├── DbiHeader.cs │ │ │ │ │ ├── DbiHeader.cs.meta │ │ │ │ │ ├── DbiModuleInfo.cs │ │ │ │ │ ├── DbiModuleInfo.cs.meta │ │ │ │ │ ├── DbiSecCon.cs │ │ │ │ │ ├── DbiSecCon.cs.meta │ │ │ │ │ ├── IntHashTable.cs │ │ │ │ │ ├── IntHashTable.cs.meta │ │ │ │ │ ├── Interfaces.cs │ │ │ │ │ ├── Interfaces.cs.meta │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── LICENSE.meta │ │ │ │ │ ├── MsfDirectory.cs │ │ │ │ │ ├── MsfDirectory.cs.meta │ │ │ │ │ ├── PdbConstant.cs │ │ │ │ │ ├── PdbConstant.cs.meta │ │ │ │ │ ├── PdbDebugException.cs │ │ │ │ │ ├── PdbDebugException.cs.meta │ │ │ │ │ ├── PdbException.cs │ │ │ │ │ ├── PdbException.cs.meta │ │ │ │ │ ├── PdbFile.cs │ │ │ │ │ ├── PdbFile.cs.meta │ │ │ │ │ ├── PdbFileHeader.cs │ │ │ │ │ ├── PdbFileHeader.cs.meta │ │ │ │ │ ├── PdbFunction.cs │ │ │ │ │ ├── PdbFunction.cs.meta │ │ │ │ │ ├── PdbLine.cs │ │ │ │ │ ├── PdbLine.cs.meta │ │ │ │ │ ├── PdbLines.cs │ │ │ │ │ ├── PdbLines.cs.meta │ │ │ │ │ ├── PdbReader.cs │ │ │ │ │ ├── PdbReader.cs.meta │ │ │ │ │ ├── PdbScope.cs │ │ │ │ │ ├── PdbScope.cs.meta │ │ │ │ │ ├── PdbSlot.cs │ │ │ │ │ ├── PdbSlot.cs.meta │ │ │ │ │ ├── PdbSource.cs │ │ │ │ │ ├── PdbSource.cs.meta │ │ │ │ │ ├── PdbTokenLine.cs │ │ │ │ │ ├── PdbTokenLine.cs.meta │ │ │ │ │ ├── SourceLocationProvider.cs │ │ │ │ │ └── SourceLocationProvider.cs.meta │ │ │ │ │ ├── Mono.Cecil.Pdb.csproj │ │ │ │ │ ├── Mono.Cecil.Pdb.csproj.meta │ │ │ │ │ ├── Mono.Cecil.Pdb.meta │ │ │ │ │ └── Mono.Cecil.Pdb │ │ │ │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ │ │ │ ├── ISymUnmanagedDocumentWriter.cs.meta │ │ │ │ │ ├── ISymUnmanagedWriter2.cs │ │ │ │ │ ├── ISymUnmanagedWriter2.cs.meta │ │ │ │ │ ├── ModuleMetadata.cs │ │ │ │ │ ├── ModuleMetadata.cs.meta │ │ │ │ │ ├── NativePdbReader.cs │ │ │ │ │ ├── NativePdbReader.cs.meta │ │ │ │ │ ├── NativePdbWriter.cs │ │ │ │ │ ├── NativePdbWriter.cs.meta │ │ │ │ │ ├── PdbHelper.cs │ │ │ │ │ ├── PdbHelper.cs.meta │ │ │ │ │ ├── SymDocumentWriter.cs │ │ │ │ │ ├── SymDocumentWriter.cs.meta │ │ │ │ │ ├── SymWriter.cs │ │ │ │ │ └── SymWriter.cs.meta │ │ │ ├── README.md │ │ │ └── README.md.meta │ │ ├── MongoDB.meta │ │ ├── MongoDB │ │ │ ├── MongoDB.Bson.meta │ │ │ ├── MongoDB.Bson │ │ │ │ ├── BsonConstants.cs │ │ │ │ ├── BsonConstants.cs.meta │ │ │ │ ├── BsonDefaults.cs │ │ │ │ ├── BsonDefaults.cs.meta │ │ │ │ ├── BsonExtensionMethods.cs │ │ │ │ ├── BsonExtensionMethods.cs.meta │ │ │ │ ├── BsonUtils.cs │ │ │ │ ├── BsonUtils.cs.meta │ │ │ │ ├── Exceptions.meta │ │ │ │ ├── Exceptions │ │ │ │ │ ├── BsonException.cs │ │ │ │ │ ├── BsonException.cs.meta │ │ │ │ │ ├── BsonInternalException.cs │ │ │ │ │ ├── BsonInternalException.cs.meta │ │ │ │ │ ├── BsonSerializationException.cs │ │ │ │ │ ├── BsonSerializationException.cs.meta │ │ │ │ │ ├── DuplicateBsonMemberMapAttributeException.cs │ │ │ │ │ ├── DuplicateBsonMemberMapAttributeException.cs.meta │ │ │ │ │ ├── TruncationException.cs │ │ │ │ │ └── TruncationException.cs.meta │ │ │ │ ├── IO.meta │ │ │ │ ├── IO │ │ │ │ │ ├── ArrayElementNameAccelerator.cs │ │ │ │ │ ├── ArrayElementNameAccelerator.cs.meta │ │ │ │ │ ├── BsonBinaryReader.cs │ │ │ │ │ ├── BsonBinaryReader.cs.meta │ │ │ │ │ ├── BsonBinaryReaderBookmark.cs │ │ │ │ │ ├── BsonBinaryReaderBookmark.cs.meta │ │ │ │ │ ├── BsonBinaryReaderContext.cs │ │ │ │ │ ├── BsonBinaryReaderContext.cs.meta │ │ │ │ │ ├── BsonBinaryReaderSettings.cs │ │ │ │ │ ├── BsonBinaryReaderSettings.cs.meta │ │ │ │ │ ├── BsonBinaryWriter.cs │ │ │ │ │ ├── BsonBinaryWriter.cs.meta │ │ │ │ │ ├── BsonBinaryWriterContext.cs │ │ │ │ │ ├── BsonBinaryWriterContext.cs.meta │ │ │ │ │ ├── BsonBinaryWriterSettings.cs │ │ │ │ │ ├── BsonBinaryWriterSettings.cs.meta │ │ │ │ │ ├── BsonChunkPool.cs │ │ │ │ │ ├── BsonChunkPool.cs.meta │ │ │ │ │ ├── BsonDocumentReader.cs │ │ │ │ │ ├── BsonDocumentReader.cs.meta │ │ │ │ │ ├── BsonDocumentReaderBookmark.cs │ │ │ │ │ ├── BsonDocumentReaderBookmark.cs.meta │ │ │ │ │ ├── BsonDocumentReaderContext.cs │ │ │ │ │ ├── BsonDocumentReaderContext.cs.meta │ │ │ │ │ ├── BsonDocumentReaderSettings.cs │ │ │ │ │ ├── BsonDocumentReaderSettings.cs.meta │ │ │ │ │ ├── BsonDocumentWriter.cs │ │ │ │ │ ├── BsonDocumentWriter.cs.meta │ │ │ │ │ ├── BsonDocumentWriterContext.cs │ │ │ │ │ ├── BsonDocumentWriterContext.cs.meta │ │ │ │ │ ├── BsonDocumentWriterSettings.cs │ │ │ │ │ ├── BsonDocumentWriterSettings.cs.meta │ │ │ │ │ ├── BsonReader.cs │ │ │ │ │ ├── BsonReader.cs.meta │ │ │ │ │ ├── BsonReaderBookmark.cs │ │ │ │ │ ├── BsonReaderBookmark.cs.meta │ │ │ │ │ ├── BsonReaderSettings.cs │ │ │ │ │ ├── BsonReaderSettings.cs.meta │ │ │ │ │ ├── BsonReaderState.cs │ │ │ │ │ ├── BsonReaderState.cs.meta │ │ │ │ │ ├── BsonStream.cs │ │ │ │ │ ├── BsonStream.cs.meta │ │ │ │ │ ├── BsonStreamAdapter.cs │ │ │ │ │ ├── BsonStreamAdapter.cs.meta │ │ │ │ │ ├── BsonStreamExtensions.cs │ │ │ │ │ ├── BsonStreamExtensions.cs.meta │ │ │ │ │ ├── BsonTrie.cs │ │ │ │ │ ├── BsonTrie.cs.meta │ │ │ │ │ ├── BsonWriter.cs │ │ │ │ │ ├── BsonWriter.cs.meta │ │ │ │ │ ├── BsonWriterSettings.cs │ │ │ │ │ ├── BsonWriterSettings.cs.meta │ │ │ │ │ ├── BsonWriterState.cs │ │ │ │ │ ├── BsonWriterState.cs.meta │ │ │ │ │ ├── ByteArrayBuffer.cs │ │ │ │ │ ├── ByteArrayBuffer.cs.meta │ │ │ │ │ ├── ByteArrayChunk.cs │ │ │ │ │ ├── ByteArrayChunk.cs.meta │ │ │ │ │ ├── ByteBufferFactory.cs │ │ │ │ │ ├── ByteBufferFactory.cs.meta │ │ │ │ │ ├── ByteBufferSlice.cs │ │ │ │ │ ├── ByteBufferSlice.cs.meta │ │ │ │ │ ├── ByteBufferStream.cs │ │ │ │ │ ├── ByteBufferStream.cs.meta │ │ │ │ │ ├── CStringUtf8Encoding.cs │ │ │ │ │ ├── CStringUtf8Encoding.cs.meta │ │ │ │ │ ├── ContextType.cs │ │ │ │ │ ├── ContextType.cs.meta │ │ │ │ │ ├── ElementAppendingBsonWriter.cs │ │ │ │ │ ├── ElementAppendingBsonWriter.cs.meta │ │ │ │ │ ├── IBsonChunk.cs │ │ │ │ │ ├── IBsonChunk.cs.meta │ │ │ │ │ ├── IBsonChunkSource.cs │ │ │ │ │ ├── IBsonChunkSource.cs.meta │ │ │ │ │ ├── IBsonReader.cs │ │ │ │ │ ├── IBsonReader.cs.meta │ │ │ │ │ ├── IBsonReaderExtensions.cs │ │ │ │ │ ├── IBsonReaderExtensions.cs.meta │ │ │ │ │ ├── IBsonWriter.cs │ │ │ │ │ ├── IBsonWriter.cs.meta │ │ │ │ │ ├── IBsonWriterExtensions.cs │ │ │ │ │ ├── IBsonWriterExtensions.cs.meta │ │ │ │ │ ├── IByteBuffer.cs │ │ │ │ │ ├── IByteBuffer.cs.meta │ │ │ │ │ ├── IElementNameValidator.cs │ │ │ │ │ ├── IElementNameValidator.cs.meta │ │ │ │ │ ├── INameDecoder.cs │ │ │ │ │ ├── INameDecoder.cs.meta │ │ │ │ │ ├── InputBufferChunkSource.cs │ │ │ │ │ ├── InputBufferChunkSource.cs.meta │ │ │ │ │ ├── JsonBuffer.cs │ │ │ │ │ ├── JsonBuffer.cs.meta │ │ │ │ │ ├── JsonConvert.cs │ │ │ │ │ ├── JsonConvert.cs.meta │ │ │ │ │ ├── JsonOutputMode.cs │ │ │ │ │ ├── JsonOutputMode.cs.meta │ │ │ │ │ ├── JsonReader.cs │ │ │ │ │ ├── JsonReader.cs.meta │ │ │ │ │ ├── JsonReaderBookmark.cs │ │ │ │ │ ├── JsonReaderBookmark.cs.meta │ │ │ │ │ ├── JsonReaderContext.cs │ │ │ │ │ ├── JsonReaderContext.cs.meta │ │ │ │ │ ├── JsonReaderSettings.cs │ │ │ │ │ ├── JsonReaderSettings.cs.meta │ │ │ │ │ ├── JsonScanner.cs │ │ │ │ │ ├── JsonScanner.cs.meta │ │ │ │ │ ├── JsonToken.cs │ │ │ │ │ ├── JsonToken.cs.meta │ │ │ │ │ ├── JsonWriter.cs │ │ │ │ │ ├── JsonWriter.cs.meta │ │ │ │ │ ├── JsonWriterContext.cs │ │ │ │ │ ├── JsonWriterContext.cs.meta │ │ │ │ │ ├── JsonWriterSettings.cs │ │ │ │ │ ├── JsonWriterSettings.cs.meta │ │ │ │ │ ├── MultiChunkBuffer.cs │ │ │ │ │ ├── MultiChunkBuffer.cs.meta │ │ │ │ │ ├── NoOpElementNameValidator.cs │ │ │ │ │ ├── NoOpElementNameValidator.cs.meta │ │ │ │ │ ├── OutputBufferChunkSource.cs │ │ │ │ │ ├── OutputBufferChunkSource.cs.meta │ │ │ │ │ ├── SingleChunkBuffer.cs │ │ │ │ │ ├── SingleChunkBuffer.cs.meta │ │ │ │ │ ├── TrieNameDecoder.cs │ │ │ │ │ ├── TrieNameDecoder.cs.meta │ │ │ │ │ ├── Utf8Encodings.cs │ │ │ │ │ ├── Utf8Encodings.cs.meta │ │ │ │ │ ├── Utf8Helper.cs │ │ │ │ │ ├── Utf8Helper.cs.meta │ │ │ │ │ ├── Utf8NameDecoder.cs │ │ │ │ │ ├── Utf8NameDecoder.cs.meta │ │ │ │ │ ├── WrappingBsonWriter.cs │ │ │ │ │ └── WrappingBsonWriter.cs.meta │ │ │ │ ├── ObjectModel.meta │ │ │ │ ├── ObjectModel │ │ │ │ │ ├── BsonArray.cs │ │ │ │ │ ├── BsonArray.cs.meta │ │ │ │ │ ├── BsonBinaryData.cs │ │ │ │ │ ├── BsonBinaryData.cs.meta │ │ │ │ │ ├── BsonBinarySubType.cs │ │ │ │ │ ├── BsonBinarySubType.cs.meta │ │ │ │ │ ├── BsonBoolean.cs │ │ │ │ │ ├── BsonBoolean.cs.meta │ │ │ │ │ ├── BsonDateTime.cs │ │ │ │ │ ├── BsonDateTime.cs.meta │ │ │ │ │ ├── BsonDecimal128.cs │ │ │ │ │ ├── BsonDecimal128.cs.meta │ │ │ │ │ ├── BsonDocument.cs │ │ │ │ │ ├── BsonDocument.cs.meta │ │ │ │ │ ├── BsonDocumentWrapper.cs │ │ │ │ │ ├── BsonDocumentWrapper.cs.meta │ │ │ │ │ ├── BsonDouble.cs │ │ │ │ │ ├── BsonDouble.cs.meta │ │ │ │ │ ├── BsonElement.cs │ │ │ │ │ ├── BsonElement.cs.meta │ │ │ │ │ ├── BsonInt32.cs │ │ │ │ │ ├── BsonInt32.cs.meta │ │ │ │ │ ├── BsonInt64.cs │ │ │ │ │ ├── BsonInt64.cs.meta │ │ │ │ │ ├── BsonJavaScript.cs │ │ │ │ │ ├── BsonJavaScript.cs.meta │ │ │ │ │ ├── BsonJavaScriptWithScope.cs │ │ │ │ │ ├── BsonJavaScriptWithScope.cs.meta │ │ │ │ │ ├── BsonMaxKey.cs │ │ │ │ │ ├── BsonMaxKey.cs.meta │ │ │ │ │ ├── BsonMinKey.cs │ │ │ │ │ ├── BsonMinKey.cs.meta │ │ │ │ │ ├── BsonNull.cs │ │ │ │ │ ├── BsonNull.cs.meta │ │ │ │ │ ├── BsonObjectId.cs │ │ │ │ │ ├── BsonObjectId.cs.meta │ │ │ │ │ ├── BsonRegularExpression.cs │ │ │ │ │ ├── BsonRegularExpression.cs.meta │ │ │ │ │ ├── BsonString.cs │ │ │ │ │ ├── BsonString.cs.meta │ │ │ │ │ ├── BsonSymbol.cs │ │ │ │ │ ├── BsonSymbol.cs.meta │ │ │ │ │ ├── BsonSymbolTable.cs │ │ │ │ │ ├── BsonSymbolTable.cs.meta │ │ │ │ │ ├── BsonTimestamp.cs │ │ │ │ │ ├── BsonTimestamp.cs.meta │ │ │ │ │ ├── BsonType.cs │ │ │ │ │ ├── BsonType.cs.meta │ │ │ │ │ ├── BsonTypeMapper.cs │ │ │ │ │ ├── BsonTypeMapper.cs.meta │ │ │ │ │ ├── BsonTypeMapperOptions.cs │ │ │ │ │ ├── BsonTypeMapperOptions.cs.meta │ │ │ │ │ ├── BsonUndefined.cs │ │ │ │ │ ├── BsonUndefined.cs.meta │ │ │ │ │ ├── BsonValue.cs │ │ │ │ │ ├── BsonValue.cs.meta │ │ │ │ │ ├── Decimal128.cs │ │ │ │ │ ├── Decimal128.cs.meta │ │ │ │ │ ├── GuidConverter.cs │ │ │ │ │ ├── GuidConverter.cs.meta │ │ │ │ │ ├── GuidRepresentation.cs │ │ │ │ │ ├── GuidRepresentation.cs.meta │ │ │ │ │ ├── IConvertibleToBsonDocument.cs │ │ │ │ │ ├── IConvertibleToBsonDocument.cs.meta │ │ │ │ │ ├── ICustomBsonTypeMapper.cs │ │ │ │ │ ├── ICustomBsonTypeMapper.cs.meta │ │ │ │ │ ├── LazyBsonArray.cs │ │ │ │ │ ├── LazyBsonArray.cs.meta │ │ │ │ │ ├── LazyBsonDocument.cs │ │ │ │ │ ├── LazyBsonDocument.cs.meta │ │ │ │ │ ├── MaterializedOnDemandBsonArray.cs │ │ │ │ │ ├── MaterializedOnDemandBsonArray.cs.meta │ │ │ │ │ ├── MaterializedOnDemandBsonDocument.cs │ │ │ │ │ ├── MaterializedOnDemandBsonDocument.cs.meta │ │ │ │ │ ├── ObjectId.cs │ │ │ │ │ ├── ObjectId.cs.meta │ │ │ │ │ ├── RawBsonArray.cs │ │ │ │ │ ├── RawBsonArray.cs.meta │ │ │ │ │ ├── RawBsonDocument.cs │ │ │ │ │ ├── RawBsonDocument.cs.meta │ │ │ │ │ ├── UInt128.cs │ │ │ │ │ └── UInt128.cs.meta │ │ │ │ ├── PowerOf2.cs │ │ │ │ ├── PowerOf2.cs.meta │ │ │ │ ├── Serialization.meta │ │ │ │ └── Serialization │ │ │ │ │ ├── AttributedSerializationProvider.cs │ │ │ │ │ ├── AttributedSerializationProvider.cs.meta │ │ │ │ │ ├── Attributes.meta │ │ │ │ │ ├── Attributes │ │ │ │ │ ├── BsonConstructorAttribute.cs │ │ │ │ │ ├── BsonConstructorAttribute.cs.meta │ │ │ │ │ ├── BsonDateTimeOptionsAttribute.cs │ │ │ │ │ ├── BsonDateTimeOptionsAttribute.cs.meta │ │ │ │ │ ├── BsonDefaultValueAttribute.cs │ │ │ │ │ ├── BsonDefaultValueAttribute.cs.meta │ │ │ │ │ ├── BsonDictionaryOptionsAttribute.cs │ │ │ │ │ ├── BsonDictionaryOptionsAttribute.cs.meta │ │ │ │ │ ├── BsonDiscriminatorAttribute.cs │ │ │ │ │ ├── BsonDiscriminatorAttribute.cs.meta │ │ │ │ │ ├── BsonElementAttribute.cs │ │ │ │ │ ├── BsonElementAttribute.cs.meta │ │ │ │ │ ├── BsonExtraElementsAttribute.cs │ │ │ │ │ ├── BsonExtraElementsAttribute.cs.meta │ │ │ │ │ ├── BsonFactoryMethodAttribute.cs │ │ │ │ │ ├── BsonFactoryMethodAttribute.cs.meta │ │ │ │ │ ├── BsonIdAttribute.cs │ │ │ │ │ ├── BsonIdAttribute.cs.meta │ │ │ │ │ ├── BsonIgnoreAttribute.cs │ │ │ │ │ ├── BsonIgnoreAttribute.cs.meta │ │ │ │ │ ├── BsonIgnoreExtraElementsAttribute.cs │ │ │ │ │ ├── BsonIgnoreExtraElementsAttribute.cs.meta │ │ │ │ │ ├── BsonIgnoreIfDefaultAttribute.cs │ │ │ │ │ ├── BsonIgnoreIfDefaultAttribute.cs.meta │ │ │ │ │ ├── BsonIgnoreIfNullAttribute.cs │ │ │ │ │ ├── BsonIgnoreIfNullAttribute.cs.meta │ │ │ │ │ ├── BsonKnownTypesAttribute.cs │ │ │ │ │ ├── BsonKnownTypesAttribute.cs.meta │ │ │ │ │ ├── BsonMemberMapAttributeUsageAttribute.cs │ │ │ │ │ ├── BsonMemberMapAttributeUsageAttribute.cs.meta │ │ │ │ │ ├── BsonNoIdAttribute.cs │ │ │ │ │ ├── BsonNoIdAttribute.cs.meta │ │ │ │ │ ├── BsonRepresentationAttribute.cs │ │ │ │ │ ├── BsonRepresentationAttribute.cs.meta │ │ │ │ │ ├── BsonRequiredAttribute.cs │ │ │ │ │ ├── BsonRequiredAttribute.cs.meta │ │ │ │ │ ├── BsonSerializationOptionsAttribute.cs │ │ │ │ │ ├── BsonSerializationOptionsAttribute.cs.meta │ │ │ │ │ ├── BsonSerializerAttribute.cs │ │ │ │ │ ├── BsonSerializerAttribute.cs.meta │ │ │ │ │ ├── BsonTimeSpanOptionsAttribute.cs │ │ │ │ │ ├── BsonTimeSpanOptionsAttribute.cs.meta │ │ │ │ │ ├── IBsonClassMapAttribute.cs │ │ │ │ │ ├── IBsonClassMapAttribute.cs.meta │ │ │ │ │ ├── IBsonCreatorMapAttribute.cs │ │ │ │ │ ├── IBsonCreatorMapAttribute.cs.meta │ │ │ │ │ ├── IBsonMemberMapAttribute.cs │ │ │ │ │ ├── IBsonMemberMapAttribute.cs.meta │ │ │ │ │ ├── IBsonPostProcessingAttribute.cs │ │ │ │ │ └── IBsonPostProcessingAttribute.cs.meta │ │ │ │ │ ├── BsonClassMap.cs │ │ │ │ │ ├── BsonClassMap.cs.meta │ │ │ │ │ ├── BsonClassMapSerializationProvider.cs │ │ │ │ │ ├── BsonClassMapSerializationProvider.cs.meta │ │ │ │ │ ├── BsonCreatorMap.cs │ │ │ │ │ ├── BsonCreatorMap.cs.meta │ │ │ │ │ ├── BsonDeserializationArgs.cs │ │ │ │ │ ├── BsonDeserializationArgs.cs.meta │ │ │ │ │ ├── BsonDeserializationContext.cs │ │ │ │ │ ├── BsonDeserializationContext.cs.meta │ │ │ │ │ ├── BsonDocumentBackedClass.cs │ │ │ │ │ ├── BsonDocumentBackedClass.cs.meta │ │ │ │ │ ├── BsonMemberMap.cs │ │ │ │ │ ├── BsonMemberMap.cs.meta │ │ │ │ │ ├── BsonObjectModelSerializationProvider.cs │ │ │ │ │ ├── BsonObjectModelSerializationProvider.cs.meta │ │ │ │ │ ├── BsonSerializationArgs.cs │ │ │ │ │ ├── BsonSerializationArgs.cs.meta │ │ │ │ │ ├── BsonSerializationContext.cs │ │ │ │ │ ├── BsonSerializationContext.cs.meta │ │ │ │ │ ├── BsonSerializationInfo.cs │ │ │ │ │ ├── BsonSerializationInfo.cs.meta │ │ │ │ │ ├── BsonSerializationProviderBase.cs │ │ │ │ │ ├── BsonSerializationProviderBase.cs.meta │ │ │ │ │ ├── BsonSerializer.cs │ │ │ │ │ ├── BsonSerializer.cs.meta │ │ │ │ │ ├── BsonSerializerRegistry.cs │ │ │ │ │ ├── BsonSerializerRegistry.cs.meta │ │ │ │ │ ├── CollectionsSerializationProvider.cs │ │ │ │ │ ├── CollectionsSerializationProvider.cs.meta │ │ │ │ │ ├── Conventions.meta │ │ │ │ │ ├── Conventions │ │ │ │ │ ├── AttributeConventionPack.cs │ │ │ │ │ ├── AttributeConventionPack.cs.meta │ │ │ │ │ ├── CamelCaseElementNameConvention.cs │ │ │ │ │ ├── CamelCaseElementNameConvention.cs.meta │ │ │ │ │ ├── ConventionBase.cs │ │ │ │ │ ├── ConventionBase.cs.meta │ │ │ │ │ ├── ConventionPack.cs │ │ │ │ │ ├── ConventionPack.cs.meta │ │ │ │ │ ├── ConventionRegistry.cs │ │ │ │ │ ├── ConventionRegistry.cs.meta │ │ │ │ │ ├── ConventionRunner.cs │ │ │ │ │ ├── ConventionRunner.cs.meta │ │ │ │ │ ├── DefaultConventionPack.cs │ │ │ │ │ ├── DefaultConventionPack.cs.meta │ │ │ │ │ ├── DelegateClassMapConvention.cs │ │ │ │ │ ├── DelegateClassMapConvention.cs.meta │ │ │ │ │ ├── DelegateMemberMapConvention.cs │ │ │ │ │ ├── DelegateMemberMapConvention.cs.meta │ │ │ │ │ ├── DelegatePostProcessingConvention.cs │ │ │ │ │ ├── DelegatePostProcessingConvention.cs.meta │ │ │ │ │ ├── EnumRepresentationConvention.cs │ │ │ │ │ ├── EnumRepresentationConvention.cs.meta │ │ │ │ │ ├── HierarchicalDiscriminatorConvention.cs │ │ │ │ │ ├── HierarchicalDiscriminatorConvention.cs.meta │ │ │ │ │ ├── IClassMapConvention.cs │ │ │ │ │ ├── IClassMapConvention.cs.meta │ │ │ │ │ ├── IConvention.cs │ │ │ │ │ ├── IConvention.cs.meta │ │ │ │ │ ├── IConventionPack.cs │ │ │ │ │ ├── IConventionPack.cs.meta │ │ │ │ │ ├── ICreatorMapConvention.cs │ │ │ │ │ ├── ICreatorMapConvention.cs.meta │ │ │ │ │ ├── IDiscriminatorConvention.cs │ │ │ │ │ ├── IDiscriminatorConvention.cs.meta │ │ │ │ │ ├── IMemberMapConvention.cs │ │ │ │ │ ├── IMemberMapConvention.cs.meta │ │ │ │ │ ├── IPostProcessingConvention.cs │ │ │ │ │ ├── IPostProcessingConvention.cs.meta │ │ │ │ │ ├── IgnoreExtraElementsConvention.cs │ │ │ │ │ ├── IgnoreExtraElementsConvention.cs.meta │ │ │ │ │ ├── IgnoreIfDefaultConvention.cs │ │ │ │ │ ├── IgnoreIfDefaultConvention.cs.meta │ │ │ │ │ ├── IgnoreIfNullConvention.cs │ │ │ │ │ ├── IgnoreIfNullConvention.cs.meta │ │ │ │ │ ├── ImmutableTypeClassMapConvention.cs │ │ │ │ │ ├── ImmutableTypeClassMapConvention.cs.meta │ │ │ │ │ ├── LookupIdGeneratorConvention.cs │ │ │ │ │ ├── LookupIdGeneratorConvention.cs.meta │ │ │ │ │ ├── MemberDefaultValueConvention.cs │ │ │ │ │ ├── MemberDefaultValueConvention.cs.meta │ │ │ │ │ ├── MemberNameElementNameConvention.cs │ │ │ │ │ ├── MemberNameElementNameConvention.cs.meta │ │ │ │ │ ├── NamedExtraElementsMemberConvention.cs │ │ │ │ │ ├── NamedExtraElementsMemberConvention.cs.meta │ │ │ │ │ ├── NamedIdMemberConvention.cs │ │ │ │ │ ├── NamedIdMemberConvention.cs.meta │ │ │ │ │ ├── NamedParameterCreatorMapConvention.cs │ │ │ │ │ ├── NamedParameterCreatorMapConvention.cs.meta │ │ │ │ │ ├── NoIdMemberConvention.cs │ │ │ │ │ ├── NoIdMemberConvention.cs.meta │ │ │ │ │ ├── ObjectDiscriminatorConvention.cs │ │ │ │ │ ├── ObjectDiscriminatorConvention.cs.meta │ │ │ │ │ ├── ReadWriteMemberFinderConvention.cs │ │ │ │ │ ├── ReadWriteMemberFinderConvention.cs.meta │ │ │ │ │ ├── ResetClassMapConvention.cs │ │ │ │ │ ├── ResetClassMapConvention.cs.meta │ │ │ │ │ ├── ResetMemberMapsConvention.cs │ │ │ │ │ ├── ResetMemberMapsConvention.cs.meta │ │ │ │ │ ├── ScalarDiscriminatorConvention.cs │ │ │ │ │ ├── ScalarDiscriminatorConvention.cs.meta │ │ │ │ │ ├── StandardDiscriminatorConvention.cs │ │ │ │ │ ├── StandardDiscriminatorConvention.cs.meta │ │ │ │ │ ├── StringObjectIdIdGeneratorConvention.cs │ │ │ │ │ └── StringObjectIdIdGeneratorConvention.cs.meta │ │ │ │ │ ├── CreatorMapDelegateCompiler.cs │ │ │ │ │ ├── CreatorMapDelegateCompiler.cs.meta │ │ │ │ │ ├── DiscriminatedInterfaceSerializationProvider.cs │ │ │ │ │ ├── DiscriminatedInterfaceSerializationProvider.cs.meta │ │ │ │ │ ├── ExpressionVisitor.cs │ │ │ │ │ ├── ExpressionVisitor.cs.meta │ │ │ │ │ ├── IBsonArraySerializer.cs │ │ │ │ │ ├── IBsonArraySerializer.cs.meta │ │ │ │ │ ├── IBsonDictionarySerializer.cs │ │ │ │ │ ├── IBsonDictionarySerializer.cs.meta │ │ │ │ │ ├── IBsonDocumentSerializer.cs │ │ │ │ │ ├── IBsonDocumentSerializer.cs.meta │ │ │ │ │ ├── IBsonIdProvider.cs │ │ │ │ │ ├── IBsonIdProvider.cs.meta │ │ │ │ │ ├── IBsonPolymorphicSerializer.cs │ │ │ │ │ ├── IBsonPolymorphicSerializer.cs.meta │ │ │ │ │ ├── IBsonSerializationProvider.cs │ │ │ │ │ ├── IBsonSerializationProvider.cs.meta │ │ │ │ │ ├── IBsonSerializer.cs │ │ │ │ │ ├── IBsonSerializer.cs.meta │ │ │ │ │ ├── IBsonSerializerExtensions.cs │ │ │ │ │ ├── IBsonSerializerExtensions.cs.meta │ │ │ │ │ ├── IBsonSerializerRegistry.cs │ │ │ │ │ ├── IBsonSerializerRegistry.cs.meta │ │ │ │ │ ├── IChildSerializerConfigurable.cs │ │ │ │ │ ├── IChildSerializerConfigurable.cs.meta │ │ │ │ │ ├── ICreatorSelector.cs │ │ │ │ │ ├── ICreatorSelector.cs.meta │ │ │ │ │ ├── IDictionaryRepresentationConfigurable.cs │ │ │ │ │ ├── IDictionaryRepresentationConfigurable.cs.meta │ │ │ │ │ ├── IIdGenerator.cs │ │ │ │ │ ├── IIdGenerator.cs.meta │ │ │ │ │ ├── IRepresentationConfigurable.cs │ │ │ │ │ ├── IRepresentationConfigurable.cs.meta │ │ │ │ │ ├── IRepresentationConverterConfigurable.cs │ │ │ │ │ ├── IRepresentationConverterConfigurable.cs.meta │ │ │ │ │ ├── IdGenerators.meta │ │ │ │ │ ├── IdGenerators │ │ │ │ │ ├── AscendingGuidGenerator.cs │ │ │ │ │ ├── AscendingGuidGenerator.cs.meta │ │ │ │ │ ├── BsonBinaryDataGuidGenerator.cs │ │ │ │ │ ├── BsonBinaryDataGuidGenerator.cs.meta │ │ │ │ │ ├── BsonObjectIdGenerator.cs │ │ │ │ │ ├── BsonObjectIdGenerator.cs.meta │ │ │ │ │ ├── CombGuidGenerator.cs │ │ │ │ │ ├── CombGuidGenerator.cs.meta │ │ │ │ │ ├── GuidGenerator.cs │ │ │ │ │ ├── GuidGenerator.cs.meta │ │ │ │ │ ├── NullIdChecker.cs │ │ │ │ │ ├── NullIdChecker.cs.meta │ │ │ │ │ ├── ObjectIdGenerator.cs │ │ │ │ │ ├── ObjectIdGenerator.cs.meta │ │ │ │ │ ├── StringObjectIdGenerator.cs │ │ │ │ │ ├── StringObjectIdGenerator.cs.meta │ │ │ │ │ ├── ZeroIdChecker.cs │ │ │ │ │ └── ZeroIdChecker.cs.meta │ │ │ │ │ ├── MostArgumentsCreatorSelector.cs │ │ │ │ │ ├── MostArgumentsCreatorSelector.cs.meta │ │ │ │ │ ├── Options.meta │ │ │ │ │ ├── Options │ │ │ │ │ ├── DictionaryRepresentation.cs │ │ │ │ │ ├── DictionaryRepresentation.cs.meta │ │ │ │ │ ├── RepresentationConverter.cs │ │ │ │ │ ├── RepresentationConverter.cs.meta │ │ │ │ │ ├── TimeSpanUnits.cs │ │ │ │ │ └── TimeSpanUnits.cs.meta │ │ │ │ │ ├── PrimitiveSerializationProvider.cs │ │ │ │ │ ├── PrimitiveSerializationProvider.cs.meta │ │ │ │ │ ├── Serializers.meta │ │ │ │ │ ├── Serializers │ │ │ │ │ ├── AbstractClassSerializer.cs │ │ │ │ │ ├── AbstractClassSerializer.cs.meta │ │ │ │ │ ├── ArraySerializer.cs │ │ │ │ │ ├── ArraySerializer.cs.meta │ │ │ │ │ ├── BitArraySerializer.cs │ │ │ │ │ ├── BitArraySerializer.cs.meta │ │ │ │ │ ├── BooleanSerializer.cs │ │ │ │ │ ├── BooleanSerializer.cs.meta │ │ │ │ │ ├── BsonArraySerializer.cs │ │ │ │ │ ├── BsonArraySerializer.cs.meta │ │ │ │ │ ├── BsonBinaryDataSerializer.cs │ │ │ │ │ ├── BsonBinaryDataSerializer.cs.meta │ │ │ │ │ ├── BsonBooleanSerializer.cs │ │ │ │ │ ├── BsonBooleanSerializer.cs.meta │ │ │ │ │ ├── BsonClassMapSerializer.cs │ │ │ │ │ ├── BsonClassMapSerializer.cs.meta │ │ │ │ │ ├── BsonDateTimeSerializer.cs │ │ │ │ │ ├── BsonDateTimeSerializer.cs.meta │ │ │ │ │ ├── BsonDecimal128Serializer.cs │ │ │ │ │ ├── BsonDecimal128Serializer.cs.meta │ │ │ │ │ ├── BsonDocumentBackedClassSerializer.cs │ │ │ │ │ ├── BsonDocumentBackedClassSerializer.cs.meta │ │ │ │ │ ├── BsonDocumentSerializer.cs │ │ │ │ │ ├── BsonDocumentSerializer.cs.meta │ │ │ │ │ ├── BsonDocumentWrapperSerializer.cs │ │ │ │ │ ├── BsonDocumentWrapperSerializer.cs.meta │ │ │ │ │ ├── BsonDoubleSerializer.cs │ │ │ │ │ ├── BsonDoubleSerializer.cs.meta │ │ │ │ │ ├── BsonInt32Serializer.cs │ │ │ │ │ ├── BsonInt32Serializer.cs.meta │ │ │ │ │ ├── BsonInt64Serializer.cs │ │ │ │ │ ├── BsonInt64Serializer.cs.meta │ │ │ │ │ ├── BsonJavaScriptSerializer.cs │ │ │ │ │ ├── BsonJavaScriptSerializer.cs.meta │ │ │ │ │ ├── BsonJavaScriptWithScopeSerializer.cs │ │ │ │ │ ├── BsonJavaScriptWithScopeSerializer.cs.meta │ │ │ │ │ ├── BsonMaxKeySerializer.cs │ │ │ │ │ ├── BsonMaxKeySerializer.cs.meta │ │ │ │ │ ├── BsonMinKeySerializer.cs │ │ │ │ │ ├── BsonMinKeySerializer.cs.meta │ │ │ │ │ ├── BsonNullSerializer.cs │ │ │ │ │ ├── BsonNullSerializer.cs.meta │ │ │ │ │ ├── BsonObjectIdSerializer.cs │ │ │ │ │ ├── BsonObjectIdSerializer.cs.meta │ │ │ │ │ ├── BsonRegularExpressionSerializer.cs │ │ │ │ │ ├── BsonRegularExpressionSerializer.cs.meta │ │ │ │ │ ├── BsonStringSerializer.cs │ │ │ │ │ ├── BsonStringSerializer.cs.meta │ │ │ │ │ ├── BsonSymbolSerializer.cs │ │ │ │ │ ├── BsonSymbolSerializer.cs.meta │ │ │ │ │ ├── BsonTimestampSerializer.cs │ │ │ │ │ ├── BsonTimestampSerializer.cs.meta │ │ │ │ │ ├── BsonUndefinedSerializer.cs │ │ │ │ │ ├── BsonUndefinedSerializer.cs.meta │ │ │ │ │ ├── BsonValueCSharpNullSerializer.cs │ │ │ │ │ ├── BsonValueCSharpNullSerializer.cs.meta │ │ │ │ │ ├── BsonValueSerializer.cs │ │ │ │ │ ├── BsonValueSerializer.cs.meta │ │ │ │ │ ├── BsonValueSerializerBase.cs │ │ │ │ │ ├── BsonValueSerializerBase.cs.meta │ │ │ │ │ ├── ByteArraySerializer.cs │ │ │ │ │ ├── ByteArraySerializer.cs.meta │ │ │ │ │ ├── ByteSerializer.cs │ │ │ │ │ ├── ByteSerializer.cs.meta │ │ │ │ │ ├── CharSerializer.cs │ │ │ │ │ ├── CharSerializer.cs.meta │ │ │ │ │ ├── ClassSerializerBase.cs │ │ │ │ │ ├── ClassSerializerBase.cs.meta │ │ │ │ │ ├── CultureInfoSerializer.cs │ │ │ │ │ ├── CultureInfoSerializer.cs.meta │ │ │ │ │ ├── DateTimeOffsetSerializer.cs │ │ │ │ │ ├── DateTimeOffsetSerializer.cs.meta │ │ │ │ │ ├── DateTimeSerializer.cs │ │ │ │ │ ├── DateTimeSerializer.cs.meta │ │ │ │ │ ├── Decimal128Serializer.cs │ │ │ │ │ ├── Decimal128Serializer.cs.meta │ │ │ │ │ ├── DecimalSerializer.cs │ │ │ │ │ ├── DecimalSerializer.cs.meta │ │ │ │ │ ├── DictionaryInterfaceImplementerSerializer.cs │ │ │ │ │ ├── DictionaryInterfaceImplementerSerializer.cs.meta │ │ │ │ │ ├── DictionarySerializerBase.cs │ │ │ │ │ ├── DictionarySerializerBase.cs.meta │ │ │ │ │ ├── DiscriminatedInterfaceSerializer.cs │ │ │ │ │ ├── DiscriminatedInterfaceSerializer.cs.meta │ │ │ │ │ ├── DiscriminatedWrapperSerializer.cs │ │ │ │ │ ├── DiscriminatedWrapperSerializer.cs.meta │ │ │ │ │ ├── DoubleSerializer.cs │ │ │ │ │ ├── DoubleSerializer.cs.meta │ │ │ │ │ ├── DynamicDocumentBaseSerializer.cs │ │ │ │ │ ├── DynamicDocumentBaseSerializer.cs.meta │ │ │ │ │ ├── ElementAppendingSerializer.cs │ │ │ │ │ ├── ElementAppendingSerializer.cs.meta │ │ │ │ │ ├── EnumSerializer.cs │ │ │ │ │ ├── EnumSerializer.cs.meta │ │ │ │ │ ├── EnumerableInterfaceImplementerSerializer.cs │ │ │ │ │ ├── EnumerableInterfaceImplementerSerializer.cs.meta │ │ │ │ │ ├── EnumerableInterfaceImplementerSerializerBase.cs │ │ │ │ │ ├── EnumerableInterfaceImplementerSerializerBase.cs.meta │ │ │ │ │ ├── EnumerableSerializerBase.cs │ │ │ │ │ ├── EnumerableSerializerBase.cs.meta │ │ │ │ │ ├── ExpandoObjectSerializer.cs │ │ │ │ │ ├── ExpandoObjectSerializer.cs.meta │ │ │ │ │ ├── GuidSerializer.cs │ │ │ │ │ ├── GuidSerializer.cs.meta │ │ │ │ │ ├── IPAddressSerializer.cs │ │ │ │ │ ├── IPAddressSerializer.cs.meta │ │ │ │ │ ├── IPEndPointSerializer.cs │ │ │ │ │ ├── IPEndPointSerializer.cs.meta │ │ │ │ │ ├── ImpliedImplementationInterfaceSerializer.cs │ │ │ │ │ ├── ImpliedImplementationInterfaceSerializer.cs.meta │ │ │ │ │ ├── Int16Serializer.cs │ │ │ │ │ ├── Int16Serializer.cs.meta │ │ │ │ │ ├── Int32Serializer.cs │ │ │ │ │ ├── Int32Serializer.cs.meta │ │ │ │ │ ├── Int64Serializer.cs │ │ │ │ │ ├── Int64Serializer.cs.meta │ │ │ │ │ ├── KeyValuePairSerializer.cs │ │ │ │ │ ├── KeyValuePairSerializer.cs.meta │ │ │ │ │ ├── LazyBsonArraySerializer.cs │ │ │ │ │ ├── LazyBsonArraySerializer.cs.meta │ │ │ │ │ ├── LazyBsonDocumentSerializer.cs │ │ │ │ │ ├── LazyBsonDocumentSerializer.cs.meta │ │ │ │ │ ├── NullableGenericSerializer.cs │ │ │ │ │ ├── NullableGenericSerializer.cs.meta │ │ │ │ │ ├── ObjectIdSerializer.cs │ │ │ │ │ ├── ObjectIdSerializer.cs.meta │ │ │ │ │ ├── ObjectSerializer.cs │ │ │ │ │ ├── ObjectSerializer.cs.meta │ │ │ │ │ ├── PartiallyRawBsonDocumentSerializer.cs │ │ │ │ │ ├── PartiallyRawBsonDocumentSerializer.cs.meta │ │ │ │ │ ├── ProjectingDeserializer.cs │ │ │ │ │ ├── ProjectingDeserializer.cs.meta │ │ │ │ │ ├── QueueSerializer.cs │ │ │ │ │ ├── QueueSerializer.cs.meta │ │ │ │ │ ├── RawBsonArraySerializer.cs │ │ │ │ │ ├── RawBsonArraySerializer.cs.meta │ │ │ │ │ ├── RawBsonDocumentSerializer.cs │ │ │ │ │ ├── RawBsonDocumentSerializer.cs.meta │ │ │ │ │ ├── ReadOnlyCollectionSerializer.cs │ │ │ │ │ ├── ReadOnlyCollectionSerializer.cs.meta │ │ │ │ │ ├── ReadOnlyCollectionSubclassSerializer.cs │ │ │ │ │ ├── ReadOnlyCollectionSubclassSerializer.cs.meta │ │ │ │ │ ├── ReadOnlyDictionaryInterfaceImplementerSerializer.cs │ │ │ │ │ ├── ReadOnlyDictionaryInterfaceImplementerSerializer.cs.meta │ │ │ │ │ ├── SByteSerializer.cs │ │ │ │ │ ├── SByteSerializer.cs.meta │ │ │ │ │ ├── SealedClassSerializerBase.cs │ │ │ │ │ ├── SealedClassSerializerBase.cs.meta │ │ │ │ │ ├── SerializeAsNominalTypeSerializer.cs │ │ │ │ │ ├── SerializeAsNominalTypeSerializer.cs.meta │ │ │ │ │ ├── SerializerBase.cs │ │ │ │ │ ├── SerializerBase.cs.meta │ │ │ │ │ ├── SerializerHelper.cs │ │ │ │ │ ├── SerializerHelper.cs.meta │ │ │ │ │ ├── SingleSerializer.cs │ │ │ │ │ ├── SingleSerializer.cs.meta │ │ │ │ │ ├── StackSerializer.cs │ │ │ │ │ ├── StackSerializer.cs.meta │ │ │ │ │ ├── StringSerializer.cs │ │ │ │ │ ├── StringSerializer.cs.meta │ │ │ │ │ ├── StructSerializerBase.cs │ │ │ │ │ ├── StructSerializerBase.cs.meta │ │ │ │ │ ├── ThreeDimensionalArraySerializer.cs │ │ │ │ │ ├── ThreeDimensionalArraySerializer.cs.meta │ │ │ │ │ ├── TimeSpanSerializer.cs │ │ │ │ │ ├── TimeSpanSerializer.cs.meta │ │ │ │ │ ├── TupleSerializers.cs │ │ │ │ │ ├── TupleSerializers.cs.meta │ │ │ │ │ ├── TwoDimensionalArraySerializer.cs │ │ │ │ │ ├── TwoDimensionalArraySerializer.cs.meta │ │ │ │ │ ├── UInt16Serializer.cs │ │ │ │ │ ├── UInt16Serializer.cs.meta │ │ │ │ │ ├── UInt32Serializer.cs │ │ │ │ │ ├── UInt32Serializer.cs.meta │ │ │ │ │ ├── UInt64Serializer.cs │ │ │ │ │ ├── UInt64Serializer.cs.meta │ │ │ │ │ ├── UndiscriminatedActualTypeSerializer.cs │ │ │ │ │ ├── UndiscriminatedActualTypeSerializer.cs.meta │ │ │ │ │ ├── UriSerializer.cs │ │ │ │ │ ├── UriSerializer.cs.meta │ │ │ │ │ ├── VersionSerializer.cs │ │ │ │ │ └── VersionSerializer.cs.meta │ │ │ │ │ ├── TypeMappingSerializationProvider.cs │ │ │ │ │ ├── TypeMappingSerializationProvider.cs.meta │ │ │ │ │ ├── TypeNameDiscriminator.cs │ │ │ │ │ └── TypeNameDiscriminator.cs.meta │ │ │ ├── MongoDB.Shared.meta │ │ │ └── MongoDB.Shared │ │ │ │ ├── ApplicationNameHelper.cs │ │ │ │ ├── ApplicationNameHelper.cs.meta │ │ │ │ ├── CanonicalDisposableClass.cs │ │ │ │ ├── CanonicalDisposableClass.cs.meta │ │ │ │ ├── CanonicalDisposableDerivedClass.cs │ │ │ │ ├── CanonicalDisposableDerivedClass.cs.meta │ │ │ │ ├── CanonicalDisposableStruct.cs │ │ │ │ ├── CanonicalDisposableStruct.cs.meta │ │ │ │ ├── CanonicalEquatableClass.cs │ │ │ │ ├── CanonicalEquatableClass.cs.meta │ │ │ │ ├── CanonicalEquatableDerivedClass.cs │ │ │ │ ├── CanonicalEquatableDerivedClass.cs.meta │ │ │ │ ├── CanonicalEquatableStruct.cs │ │ │ │ ├── CanonicalEquatableStruct.cs.meta │ │ │ │ ├── Hasher.cs │ │ │ │ ├── Hasher.cs.meta │ │ │ │ ├── IncrementalMD5.cs │ │ │ │ ├── IncrementalMD5.cs.meta │ │ │ │ ├── MaxTimeHelper.cs │ │ │ │ └── MaxTimeHelper.cs.meta │ │ ├── Unity.ThirdParty.asmdef │ │ └── Unity.ThirdParty.asmdef.meta │ ├── link.xml │ └── link.xml.meta ├── Packages │ └── manifest.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NavMeshLayers.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ └── VFXManager.asset ├── Tools │ ├── DevAutoCompile.bat │ ├── Mono.Cecil.dll │ ├── Mono.CompilerServices.SymbolWriter.dll │ └── pdb2mdb.exe ├── Unity.Editor.csproj ├── Unity.Hotfix.csproj ├── Unity.Model.csproj ├── Unity.ThirdParty.csproj ├── Unity.sln ├── Unity.sln.DotSettings ├── Unity.sln.DotSettings.user └── Unity.userprefs └── 说明.txt /Bin/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Bin/run.bat -------------------------------------------------------------------------------- /Config/BuffConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/BuffConfig.txt -------------------------------------------------------------------------------- /Config/StartConfig/127.0.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/StartConfig/127.0.0.1.txt -------------------------------------------------------------------------------- /Config/StartConfig/Benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/StartConfig/Benchmark.txt -------------------------------------------------------------------------------- /Config/StartConfig/BenchmarkWebsocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/StartConfig/BenchmarkWebsocket.txt -------------------------------------------------------------------------------- /Config/StartConfig/LocalAllServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/StartConfig/LocalAllServer.txt -------------------------------------------------------------------------------- /Config/StartConfig/LocalAllServerWebsocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/StartConfig/LocalAllServerWebsocket.txt -------------------------------------------------------------------------------- /Config/UnitConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/UnitConfig.txt -------------------------------------------------------------------------------- /Config/graph.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Config/graph.bytes -------------------------------------------------------------------------------- /Excel/UnitConfig.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Excel/UnitConfig.xlsx -------------------------------------------------------------------------------- /FileServer/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /FileServer/Microsoft.AspNetCore.StaticFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/Microsoft.AspNetCore.StaticFiles.dll -------------------------------------------------------------------------------- /FileServer/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /FileServer/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /FileServer/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /FileServer/Microsoft.Extensions.WebEncoders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/Microsoft.Extensions.WebEncoders.dll -------------------------------------------------------------------------------- /FileServer/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /FileServer/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/FileServer/web.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/LICENSE -------------------------------------------------------------------------------- /Proto/HotfixMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Proto/HotfixMessage.proto -------------------------------------------------------------------------------- /Proto/InnerMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Proto/InnerMessage.proto -------------------------------------------------------------------------------- /Proto/OuterMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Proto/OuterMessage.proto -------------------------------------------------------------------------------- /Proto/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Proto/protoc -------------------------------------------------------------------------------- /Proto/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Proto/protoc.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/README.md -------------------------------------------------------------------------------- /Server/.vs/Server/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/.vs/Server/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /Server/.vs/Server/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/.vs/Server/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Server/.vs/Server/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/.vs/Server/v15/.suo -------------------------------------------------------------------------------- /Server/.vs/Server/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/.vs/Server/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Server/.vs/Server/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/.vs/Server/v16/.suo -------------------------------------------------------------------------------- /Server/App/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/App.config -------------------------------------------------------------------------------- /Server/App/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/NLog.config -------------------------------------------------------------------------------- /Server/App/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/NLog.xsd -------------------------------------------------------------------------------- /Server/App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/Program.cs -------------------------------------------------------------------------------- /Server/App/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/Properties/launchSettings.json -------------------------------------------------------------------------------- /Server/App/Server.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/Server.App.csproj -------------------------------------------------------------------------------- /Server/App/obj/Debug/App.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Debug/App.dll -------------------------------------------------------------------------------- /Server/App/obj/Debug/App.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Debug/App.exe -------------------------------------------------------------------------------- /Server/App/obj/Debug/App.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Debug/App.pdb -------------------------------------------------------------------------------- /Server/App/obj/Debug/Server.App.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Debug/Server.App.AssemblyInfo.cs -------------------------------------------------------------------------------- /Server/App/obj/Debug/Server.App.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 935fc6b03c2183b74aad9f70355d701aca07a4a5 2 | -------------------------------------------------------------------------------- /Server/App/obj/Debug/Server.App.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Debug/Server.App.assets.cache -------------------------------------------------------------------------------- /Server/App/obj/Debug/Server.App.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/App/obj/Debug/Server.App.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ac56b051dde1b645a828e174f0d5ecb6c308b00 2 | -------------------------------------------------------------------------------- /Server/App/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/App/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/App/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/App/obj/Server.App.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Server.App.csproj.nuget.cache -------------------------------------------------------------------------------- /Server/App/obj/Server.App.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Server.App.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Server/App/obj/Server.App.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Server.App.csproj.nuget.g.props -------------------------------------------------------------------------------- /Server/App/obj/Server.App.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/Server.App.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Server/App/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/project.assets.json -------------------------------------------------------------------------------- /Server/App/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/App/obj/project.nuget.cache -------------------------------------------------------------------------------- /Server/Hotfix/Handler/C2G_PlayerInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Handler/C2G_PlayerInfoHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Handler/C2M_ReloadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Handler/C2M_ReloadHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Handler/C2M_TestRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Handler/C2M_TestRequestHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Handler/C2R_PingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Handler/C2R_PingHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Handler/G2C_TestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Handler/G2C_TestHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Handler/M2A_ReloadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Handler/M2A_ReloadHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Helper/HotfixHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Helper/HotfixHelper.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/DB/DBProxyComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/DB/DBProxyComponentSystem.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/DB/DBQueryRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/DB/DBQueryRequestHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/DB/DBSaveRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/DB/DBSaveRequestHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Demo/Actor_TransferHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Demo/Actor_TransferHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Demo/C2G_EnterMapHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Demo/C2G_EnterMapHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Demo/C2G_LoginGateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Demo/C2G_LoginGateHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Demo/C2R_LoginHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Demo/C2R_LoginHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Demo/Frame_ClickMapHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Demo/Frame_ClickMapHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Demo/G2M_CreateUnitHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Demo/G2M_CreateUnitHandler.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Demo/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Demo/MessageHelper.cs -------------------------------------------------------------------------------- /Server/Hotfix/Module/Http/HttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Module/Http/HttpTest.cs -------------------------------------------------------------------------------- /Server/Hotfix/Server.Hotfix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/Server.Hotfix.csproj -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/Hotfix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/obj/Debug/Hotfix.dll -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/Hotfix.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/obj/Debug/Hotfix.pdb -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/Server.Hotfix.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2ffb5a923bbf1358a193815c0d10288a114fbc21 2 | -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/Server.Hotfix.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/obj/Debug/Server.Hotfix.assets.cache -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/Server.Hotfix.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/Server.Hotfix.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ab4e6412382e7fa741ea60fc6020f00b2825235 2 | -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Hotfix/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Hotfix/obj/Server.Hotfix.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/obj/Server.Hotfix.csproj.nuget.cache -------------------------------------------------------------------------------- /Server/Hotfix/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/obj/project.assets.json -------------------------------------------------------------------------------- /Server/Hotfix/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Hotfix/obj/project.nuget.cache -------------------------------------------------------------------------------- /Server/Model/Base/Async/ETTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Async/ETTask.cs -------------------------------------------------------------------------------- /Server/Model/Base/Async/ETTaskCompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Async/ETTaskCompletionSource.cs -------------------------------------------------------------------------------- /Server/Model/Base/Async/ETTaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Async/ETTaskFactory.cs -------------------------------------------------------------------------------- /Server/Model/Base/Async/ETVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Async/ETVoid.cs -------------------------------------------------------------------------------- /Server/Model/Base/Async/IAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Async/IAwaiter.cs -------------------------------------------------------------------------------- /Server/Model/Base/Async/MoveNextRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Async/MoveNextRunner.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/BaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/BaseAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/Component.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/ComponentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/ComponentFactory.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/ComponentWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/ComponentWithId.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/Entity.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/EntityEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/EntityEventAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/EventProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/EventProxy.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/EventSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/IAwakeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/IAwakeSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/IChangeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/IChangeSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/IDeserializeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/IDeserializeSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/IDestroySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/IDestroySystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/ILateUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/ILateUpdateSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/ILoadSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/ILoadSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/ISerializeToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/ISerializeToEntity.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/IStartSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/IStartSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/IUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/IUpdateSystem.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/Object.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/ObjectPool.cs -------------------------------------------------------------------------------- /Server/Model/Base/Base/ObjectSystemAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Base/ObjectSystemAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Base/DoubleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/DoubleMap.cs -------------------------------------------------------------------------------- /Server/Model/Base/Event/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Event/Env.cs -------------------------------------------------------------------------------- /Server/Model/Base/Event/EnvKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Event/EnvKey.cs -------------------------------------------------------------------------------- /Server/Model/Base/Event/EventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Event/EventAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Base/Event/EventIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Event/EventIdType.cs -------------------------------------------------------------------------------- /Server/Model/Base/Event/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Event/IEvent.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/ByteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/ByteHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/DllHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/DllHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/EnumHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/FileHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/IdGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/IdGenerater.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/JsonHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/MD5Helper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/MethodInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/MethodInfoHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/MongoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/MongoHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/NetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/NetHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/ObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/ObjectHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/RandomHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/StringHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/TimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/TimeHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Helper/ZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Helper/ZipHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Log.cs -------------------------------------------------------------------------------- /Server/Model/Base/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/LogType.cs -------------------------------------------------------------------------------- /Server/Model/Base/Logger/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Logger/ILog.cs -------------------------------------------------------------------------------- /Server/Model/Base/Logger/NLogAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/Logger/NLogAdapter.cs -------------------------------------------------------------------------------- /Server/Model/Base/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/MultiMap.cs -------------------------------------------------------------------------------- /Server/Model/Base/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/ProcessHelper.cs -------------------------------------------------------------------------------- /Server/Model/Base/QueueDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/QueueDictionary.cs -------------------------------------------------------------------------------- /Server/Model/Base/RecyclableMemoryStream/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/RecyclableMemoryStream/Events.cs -------------------------------------------------------------------------------- /Server/Model/Base/TryLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/TryLocker.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnOrderMultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnOrderMultiMap.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnityEngine/Mathf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnityEngine/Mathf.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnityEngine/Matrix3x3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnityEngine/Matrix3x3.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnityEngine/Matrix4x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnityEngine/Matrix4x4.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnityEngine/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnityEngine/Quaternion.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnityEngine/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnityEngine/Vector2.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnityEngine/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnityEngine/Vector3.cs -------------------------------------------------------------------------------- /Server/Model/Base/UnityEngine/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Base/UnityEngine/Vector4.cs -------------------------------------------------------------------------------- /Server/Model/Component/AppManagerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/AppManagerComponent.cs -------------------------------------------------------------------------------- /Server/Model/Component/Config/ClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/Config/ClientConfig.cs -------------------------------------------------------------------------------- /Server/Model/Component/Config/StartConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/Config/StartConfig.cs -------------------------------------------------------------------------------- /Server/Model/Component/ConsoleComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/ConsoleComponent.cs -------------------------------------------------------------------------------- /Server/Model/Component/KVComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/KVComponent.cs -------------------------------------------------------------------------------- /Server/Model/Component/OptionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/OptionComponent.cs -------------------------------------------------------------------------------- /Server/Model/Component/ReplComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/ReplComponent.cs -------------------------------------------------------------------------------- /Server/Model/Component/RobotComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/RobotComponent.cs -------------------------------------------------------------------------------- /Server/Model/Component/StartConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/StartConfigComponent.cs -------------------------------------------------------------------------------- /Server/Model/Component/TimerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Component/TimerComponent.cs -------------------------------------------------------------------------------- /Server/Model/Entity/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Entity/Game.cs -------------------------------------------------------------------------------- /Server/Model/Entity/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Entity/Scene.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/AMActorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/AMActorHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/AMActorRpcHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/AMActorRpcHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/ActorMessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/ActorMessageAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/ActorMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/ActorMessageSender.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/ActorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/ActorResponse.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/ActorTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/ActorTask.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/IActorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/IActorMessage.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/IMActorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/IMActorHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/IMailboxHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/IMailboxHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/MailBoxComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/MailBoxComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Actor/MailboxType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Actor/MailboxType.cs -------------------------------------------------------------------------------- /Server/Model/Module/ActorLocation/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/ActorLocation/Location.cs -------------------------------------------------------------------------------- /Server/Model/Module/Config/ACategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Config/ACategory.cs -------------------------------------------------------------------------------- /Server/Model/Module/Config/AConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Config/AConfigComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Config/ConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Config/ConfigAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Module/Config/ConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Config/ConfigComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Config/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Config/ConfigHelper.cs -------------------------------------------------------------------------------- /Server/Model/Module/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Config/IConfig.cs -------------------------------------------------------------------------------- /Server/Model/Module/CoroutineLock/CoroutineLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/CoroutineLock/CoroutineLock.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBConfig.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBProxyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBProxyComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBQueryBatchTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBQueryBatchTask.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBQueryJsonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBQueryJsonTask.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBQueryTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBQueryTask.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBSaveBatchTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBSaveBatchTask.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBSaveTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBSaveTask.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBTask.cs -------------------------------------------------------------------------------- /Server/Model/Module/DB/DBTaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/DB/DBTaskQueue.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/Config/UnitConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/Config/UnitConfig.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/MoveComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/MoveComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/Player.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/PlayerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/PlayerComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/SessionInfoComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/SessionInfoComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/SessionPlayerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/SessionPlayerComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/Unit.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/UnitComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/UnitComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/UnitGateComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/UnitGateComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Demo/UnitPathComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Demo/UnitPathComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Http/Http.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Http/Http.cs -------------------------------------------------------------------------------- /Server/Model/Module/Http/HttpComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Http/HttpComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Http/HttpConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Http/HttpConfig.cs -------------------------------------------------------------------------------- /Server/Model/Module/Http/HttpHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Http/HttpHandlerAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Module/Http/IHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Http/IHttpHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/AMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/AMHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/AMRpcHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/AMRpcHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/ErrorCode.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/HotfixMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/HotfixMessage.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/HotfixOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/HotfixOpcode.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/IMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/IMHandler.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/IMessage.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/IMessageDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/IMessageDispatcher.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/IMessagePacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/IMessagePacker.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/InnerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/InnerConfig.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/InnerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/InnerMessage.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/InnerOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/InnerOpcode.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/MessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/MessageAttribute.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/MessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/MessageInfo.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/MongoPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/MongoPacker.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/NetInnerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/NetInnerComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/NetOuterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/NetOuterComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/Network/AChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/Network/AChannel.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/Network/AService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/Network/AService.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/NetworkComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/NetworkComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/Opcode.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/OpcodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/OpcodeHelper.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/OpcodeTypeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/OpcodeTypeComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/OuterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/OuterConfig.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/OuterMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/OuterMessage.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/OuterOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/OuterOpcode.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/ProtobufHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/ProtobufHelper.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/ProtobufPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/ProtobufPacker.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/RpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/RpcException.cs -------------------------------------------------------------------------------- /Server/Model/Module/Message/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Message/Session.cs -------------------------------------------------------------------------------- /Server/Model/Module/Numeric/INumericWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Numeric/INumericWatcher.cs -------------------------------------------------------------------------------- /Server/Model/Module/Numeric/NumericComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Numeric/NumericComponent.cs -------------------------------------------------------------------------------- /Server/Model/Module/Numeric/NumericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Numeric/NumericType.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/ABPathWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/ABPathWrap.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/BBTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/BBTree.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/Funnel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/Funnel.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/Guid.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/INavmesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/INavmesh.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/Int3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/Int3.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/IntRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/IntRect.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/ListPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/ListPool.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/NN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/NN.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/NavGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/NavGraph.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/Path.cs -------------------------------------------------------------------------------- /Server/Model/Module/Pathfinding/Recast/PathPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Module/Pathfinding/Recast/PathPool.cs -------------------------------------------------------------------------------- /Server/Model/Other/AppType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Other/AppType.cs -------------------------------------------------------------------------------- /Server/Model/Other/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Other/Options.cs -------------------------------------------------------------------------------- /Server/Model/Server.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Server.Model.csproj -------------------------------------------------------------------------------- /Server/Model/Server.Model.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/Server.Model.csproj.user -------------------------------------------------------------------------------- /Server/Model/obj/Debug/Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/obj/Debug/Model.dll -------------------------------------------------------------------------------- /Server/Model/obj/Debug/Model.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/obj/Debug/Model.pdb -------------------------------------------------------------------------------- /Server/Model/obj/Debug/Server.Model.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4a8dbeadcd9b0f1c9e3d60538b31bdeebd5df202 2 | -------------------------------------------------------------------------------- /Server/Model/obj/Debug/Server.Model.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/obj/Debug/Server.Model.assets.cache -------------------------------------------------------------------------------- /Server/Model/obj/Debug/Server.Model.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Model/obj/Debug/Server.Model.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6f7ac8192728c93927049e2b84b8108a03a72d2b 2 | -------------------------------------------------------------------------------- /Server/Model/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Model/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Model/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/Model/obj/Server.Model.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/obj/Server.Model.csproj.nuget.cache -------------------------------------------------------------------------------- /Server/Model/obj/Server.Model.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/obj/Server.Model.csproj.nuget.g.props -------------------------------------------------------------------------------- /Server/Model/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/obj/project.assets.json -------------------------------------------------------------------------------- /Server/Model/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Model/obj/project.nuget.cache -------------------------------------------------------------------------------- /Server/Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Server.sln -------------------------------------------------------------------------------- /Server/Server.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Server.sln.DotSettings -------------------------------------------------------------------------------- /Server/Server.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/Server.sln.DotSettings.user -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/FieldCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/Google.Protobuf/FieldCodec.cs -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/Google.Protobuf/MessageParser.cs -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/RepeatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/Google.Protobuf/RepeatedField.cs -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/WireFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/Google.Protobuf/WireFormat.cs -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/obj/Debug/Google.Protobuf.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | af28c5750966a7392df758feafb07860790c6a3d 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/obj/Debug/Google.Protobuf.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/obj/Debug/Google.Protobuf.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b44176933197f4c1ad218410ec31239e026a3901 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/Google.Protobuf/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/Kcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/Kcp.cs -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/KcpLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/KcpLib.csproj -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/kcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/kcp.dll -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/libkcp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/libkcp.dylib -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/libkcp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/libkcp.so -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/Debug/KcpLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 615748d4cb3bde9645794aef49f3ace612e3ef24 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/Debug/KcpLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3e87defeffd50b94179461a35ddebda956afd890 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/Debug/KcpLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/obj/Debug/KcpLib.dll -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/Debug/KcpLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/obj/Debug/KcpLib.pdb -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/obj/project.assets.json -------------------------------------------------------------------------------- /Server/ThirdParty/KcpLib/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/KcpLib/obj/project.nuget.cache -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.1/MongoDB.Bson.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 405b401d4a236866d1b9c2a963d212443cb0c595 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.1/MongoDB.Bson.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b1051174248a04e797fbf4a0190f4c6ac1cb9c1b 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.2/MongoDB.Bson.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 405b401d4a236866d1b9c2a963d212443cb0c595 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.2/MongoDB.Bson.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 455464df83c2db564a9a54b3f6d4312cf94be5d0 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp3.0/MongoDB.Bson.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 405b401d4a236866d1b9c2a963d212443cb0c595 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Bson/obj/Debug/netcoreapp3.0/MongoDB.Bson.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0732923d5d6dd34ab35b44ab093599e7fd025522 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.1/MongoDB.Driver.Core.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.2/MongoDB.Driver.Core.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.Core/obj/Debug/netcoreapp3.0/MongoDB.Driver.Core.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.1/MongoDB.Driver.GridFS.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.2/MongoDB.Driver.GridFS.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver.GridFS/obj/Debug/netcoreapp3.0/MongoDB.Driver.GridFS.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.1/MongoDB.Driver.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b58128292a1b58a860b2b3c4464e1f2c830133db 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.1/MongoDB.Driver.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.2/MongoDB.Driver.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b58128292a1b58a860b2b3c4464e1f2c830133db 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.2/MongoDB.Driver.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp3.0/MongoDB.Driver.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b58128292a1b58a860b2b3c4464e1f2c830133db 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.Driver/obj/Debug/netcoreapp3.0/MongoDB.Driver.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ThirdParty/MongoDBDriver/MongoDB.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/MongoDBDriver/MongoDB.ruleset -------------------------------------------------------------------------------- /Server/ThirdParty/obj/Debug/netcoreapp3.1/Server.ThirdParty.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6f267375674bc140361785215b8bb64a36fa1796 2 | -------------------------------------------------------------------------------- /Server/ThirdParty/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/obj/project.assets.json -------------------------------------------------------------------------------- /Server/ThirdParty/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Server/ThirdParty/obj/project.nuget.cache -------------------------------------------------------------------------------- /Unity/Assets/Bundles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles.meta -------------------------------------------------------------------------------- /Unity/Assets/Bundles/Independent.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/Independent.meta -------------------------------------------------------------------------------- /Unity/Assets/Bundles/Independent/Code.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/Independent/Code.prefab -------------------------------------------------------------------------------- /Unity/Assets/Bundles/Independent/Code.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/Independent/Code.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Bundles/Independent/Config.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/Independent/Config.prefab -------------------------------------------------------------------------------- /Unity/Assets/Bundles/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/UI.meta -------------------------------------------------------------------------------- /Unity/Assets/Bundles/UI/UILobby.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/UI/UILobby.prefab -------------------------------------------------------------------------------- /Unity/Assets/Bundles/UI/UILobby.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/UI/UILobby.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Bundles/UI/UILogin.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/UI/UILogin.prefab -------------------------------------------------------------------------------- /Unity/Assets/Bundles/UI/UILogin.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/UI/UILogin.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Bundles/Unit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/Unit.meta -------------------------------------------------------------------------------- /Unity/Assets/Bundles/Unit/Unit.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/Unit/Unit.prefab -------------------------------------------------------------------------------- /Unity/Assets/Bundles/Unit/Unit.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Bundles/Unit/Unit.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/AstarPathfindingProject.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/AstarPathfindingProject.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/AstarPathfindingProject/EditorAssets/AstarEditorSkinDark.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fc713511eb5d4fb9937ab63de6af346 3 | -------------------------------------------------------------------------------- /Unity/Assets/Editor/AstarPathfindingProject/EditorAssets/AstarEditorSkinLight.guiskin.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66428235a3cda4584bd90de6998ad4d2 3 | -------------------------------------------------------------------------------- /Unity/Assets/Editor/AstarPathfindingProject/EditorAssets/Materials/Navmesh.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ce51318bbfb1466188b929a68a6bd3a 3 | -------------------------------------------------------------------------------- /Unity/Assets/Editor/AstarPathfindingProject/EditorAssets/Materials/Navmesh.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dad35c0b62e44c26ab244ad80deee1a 3 | -------------------------------------------------------------------------------- /Unity/Assets/Editor/BuildEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eab6524185f247a78b3320f9d6a3eed5 3 | timeCreated: 1503647600 -------------------------------------------------------------------------------- /Unity/Assets/Editor/BuildEditor/BuildEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/BuildEditor/BuildEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Editor/BuildEditor/BuildEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52155b8c452647ec8b84033519269054 3 | timeCreated: 1507865387 -------------------------------------------------------------------------------- /Unity/Assets/Editor/BuildEditor/BuildHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/BuildEditor/BuildHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Editor/ComponentViewEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/ComponentViewEditor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/ExcelExporterEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e91244514194e95aac3947b3ff064f4 3 | timeCreated: 1505439981 -------------------------------------------------------------------------------- /Unity/Assets/Editor/ExcelExporterEditor/ExcelExporterEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 74e20be85f3f4863aa8418d99b14fbbe 3 | timeCreated: 1505439974 -------------------------------------------------------------------------------- /Unity/Assets/Editor/GlobalConfigEditor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 213fa34dccaf4a66ae2ae115b04d7f82 3 | timeCreated: 1510807526 -------------------------------------------------------------------------------- /Unity/Assets/Editor/GlobalConfigEditor/GlobalConfigEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51bd2599a7c84da9bfa90cd8d37db805 3 | timeCreated: 1510807539 -------------------------------------------------------------------------------- /Unity/Assets/Editor/Helper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5999bd61b5ca4e5ba50b20b2e3a7f9b2 3 | timeCreated: 1507865451 -------------------------------------------------------------------------------- /Unity/Assets/Editor/Helper/EditorResHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/Helper/EditorResHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Editor/Helper/EditorResHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 534eee73ca004cb58dcde9e3536b8b74 3 | timeCreated: 1507865453 -------------------------------------------------------------------------------- /Unity/Assets/Editor/ILRuntimeEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/ILRuntimeEditor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/Proto2CsEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/Proto2CsEditor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/ReferenceCollectorEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/ReferenceCollectorEditor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/RsyncEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/RsyncEditor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/RsyncEditor/RsyncConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/RsyncEditor/RsyncConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Editor/RsyncEditor/RsyncEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/RsyncEditor/RsyncEditor.cs -------------------------------------------------------------------------------- /Unity/Assets/Editor/ServerCommandLineEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/ServerCommandLineEditor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/ServerManagerEditor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/ServerManagerEditor.meta -------------------------------------------------------------------------------- /Unity/Assets/Editor/Unity.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/Unity.Editor.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Editor/Unity.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Editor/Unity.Editor.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Event.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Event.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Event/EventIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Event/EventIdType.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Event/EventIdType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Event/EventIdType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Event/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Event/IEvent.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Event/IEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Event/IEvent.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Helper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Helper.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Helper/ArrayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Helper/ArrayHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Helper/Dumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Helper/Dumper.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Helper/Dumper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Helper/Dumper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Helper/ExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Helper/ExceptionHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Helper/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Helper/JsonHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Helper/JsonHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Helper/JsonHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Log.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Log.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Log.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/Component.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/Component.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/Component.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/ComponentWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/ComponentWithId.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/Entity.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/Entity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/Entity.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/EntityType.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/EntityType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/EntityType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/EventSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/IAwakeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/IAwakeSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/IChangeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/IChangeSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/IDestroySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/IDestroySystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/ILoadSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/ILoadSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/IStartSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/IStartSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/IUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/IUpdateSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/Object.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/Object.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/Object.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/ObjectPool.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Base/Object/ObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Base/Object/ObjectPool.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Entity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Entity.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Entity/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Entity/Game.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Entity/Game.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Entity/Game.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Entity/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Entity/Scene.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Entity/Scene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Entity/Scene.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Init.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Init.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Init.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Actor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Actor.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Actor/IActorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Actor/IActorMessage.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/ActorLocation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/ActorLocation.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Config.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Config/ACategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Config/ACategory.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Config/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Config/ConfigHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Config/IConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Config/IConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Config/IConfig.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Demo.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Demo/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Demo/Config.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Demo/Helper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Demo/Helper.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Demo/OperaComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Demo/OperaComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Demo/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Demo/UI.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Demo/UI/UILobby.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Demo/UI/UILobby.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Demo/UI/UILogin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Demo/UI/UILogin.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message/AMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message/AMHandler.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message/HotfixOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message/HotfixOpcode.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message/IMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message/IMHandler.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message/IMessage.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message/MessagePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message/MessagePool.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message/Session.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/Message/Session.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/Message/Session.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/IUIFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/IUIFactory.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/IUIFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/IUIFactory.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/UI.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/UI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/UI.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/UIComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/UIComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/UIComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/UIComponent.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/UIType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/UIType.cs -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Module/UI/UIType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Module/UI/UIType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Unity.Hotfix.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Unity.Hotfix.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Hotfix/Unity.Hotfix.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Hotfix/Unity.Hotfix.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/ETTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/ETTask.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/ETTask.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/ETTask.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/ETTaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/ETTaskFactory.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/ETVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/ETVoid.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/ETVoid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/ETVoid.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/IAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/IAwaiter.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/IAwaiter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/IAwaiter.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Async/MoveNextRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Async/MoveNextRunner.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/DoubleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/DoubleMap.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/DoubleMap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/DoubleMap.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/Env.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/Env.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/Env.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/EnvKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/EnvKey.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/EnvKey.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/EnvKey.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/EventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/EventAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/EventIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/EventIdType.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/EventIdType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/EventIdType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/IEvent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Event/IEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Event/IEvent.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/ByteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/ByteHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/ByteHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/ByteHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/Dumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/Dumper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/Dumper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/Dumper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/EnumHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/EnumHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/EnumHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/FileHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/FileHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/FileHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/IdGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/IdGenerater.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/IdGenerater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/IdGenerater.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/JsonHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/JsonHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/JsonHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/MD5Helper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/MD5Helper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/MD5Helper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/MethodInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/MethodInfoHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/MongoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/MongoHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/MongoHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/MongoHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/NetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/NetHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/NetHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/NetHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/ObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/ObjectHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/RandomHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/StringHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/TimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/TimeHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/TimeHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/TimeHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/ZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/ZipHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Helper/ZipHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Helper/ZipHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/IL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/IL.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/IL/Adapt_IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/IL/Adapt_IMessage.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/IL/Adapt_IMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/IL/Adapt_IMessage.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/IL/IDisposableAdaptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/IL/IDisposableAdaptor.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/IL/ILAdapterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/IL/ILAdapterAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/IL/ILBindingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/IL/ILBindingAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Log.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Log.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Log.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/LogType.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/LogType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/LogType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/MultiMap.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/MultiMap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/MultiMap.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/BaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/BaseAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/Component.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/Component.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/Component.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ComponentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/ComponentFactory.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ComponentFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a68d8b697bd643b0ad363104caa72b8e 3 | timeCreated: 1504238374 -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ComponentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/ComponentView.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ComponentWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/ComponentWithId.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/Entity.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/Entity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/Entity.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/EventProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/EventProxy.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/EventProxy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/EventProxy.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/EventSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/EventSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/EventSystem.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/HideInHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/HideInHierarchy.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/IAwakeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/IAwakeSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/IChangeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/IChangeSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/IDestroySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/IDestroySystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ILoadSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/ILoadSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ILoadSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/ILoadSystem.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/IStartSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/IStartSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/IStartSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a6304f22c9f47b4b5992372e8080252 3 | timeCreated: 1504145679 -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/IUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/IUpdateSystem.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/Object.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/Object.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/Object.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/ObjectPool.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/Object/ObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/Object/ObjectPool.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/ProcessHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/ProcessHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/ProcessHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/QueueDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/QueueDictionary.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/QueueDictionary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/QueueDictionary.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/TryLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/TryLocker.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/TryLocker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/TryLocker.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/UnOrderMultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/UnOrderMultiMap.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Base/UnOrderMultiMap.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Base/UnOrderMultiMap.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Component.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/Config.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config/DBConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/Config/DBConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config/GlobalProto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/Config/GlobalProto.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config/GlobalProto.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8c68652f939473db936aa3e8a567548 3 | timeCreated: 1510746252 -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config/HttpConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/Config/HttpConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config/InnerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/Config/InnerConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config/OuterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/Config/OuterConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/Config/StartConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/Config/StartConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/GlobalConfigComponent.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9829f725984449dbb8dac921152a1c26 3 | timeCreated: 1510746214 -------------------------------------------------------------------------------- /Unity/Assets/Model/Component/TimerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Component/TimerComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity/Game.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/Game.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity/Game.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/Hotfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity/Hotfix.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/Hotfix.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity/Hotfix.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity/Scene.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/Scene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity/Scene.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/UnityWebRequestAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Entity/UnityWebRequestAsync.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Entity/UnityWebRequestAsync.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7de0fad0369a4e589c1ae427717f5b01 3 | timeCreated: 1510746129 -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/ActionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/ActionHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/ActionHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/ActionHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/BundleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/BundleHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/BundleHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 208660418b3f48f4a72b45f5ef6d96a1 3 | timeCreated: 1510746018 -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/GameObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/GameObjectHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/GameObjectHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/GameObjectHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/ILHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/ILHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/ILHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db76e26ce70b40d1823db1466a26fc83 3 | timeCreated: 1504164125 -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/PathHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/PathHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/PathHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/PositionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/PositionHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/PositionHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/PositionHelper.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/ResourcesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Helper/ResourcesHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Helper/ResourcesHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45c9a2ca2abc43bbab561109c340f827 3 | timeCreated: 1510746394 -------------------------------------------------------------------------------- /Unity/Assets/Model/ILBinding.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/ILBinding.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/ILBinding/CLRBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/ILBinding/CLRBindings.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/ILBinding/CLRBindings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/ILBinding/CLRBindings.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Init.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Init.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Init.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Actor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Actor.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Actor/IActorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Actor/IActorMessage.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/ActorLocation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/ActorLocation.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/AssetsBundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/AssetsBundle.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/AssetsBundle/AssetsLoaderAsync.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5aab0e13efc491cbae3d11cc8ed42fc 3 | timeCreated: 1510746129 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79cf86d179ba4eda88b3bd3708dab066 3 | timeCreated: 1519369141 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Config/ACategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Config/ACategory.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Config/ACategory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Config/ACategory.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Config/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Config/ConfigHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Config/IConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Config/IConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Config/IConfig.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/CoroutineLock.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/CoroutineLock.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/CameraComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/CameraComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/Config.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/MoveComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/MoveComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/Player.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/Player.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/PlayerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/PlayerComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/PlayerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/PlayerFactory.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/SessionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/SessionComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/TurnComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/TurnComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/UI.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/UI/UILoading.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1aa1f5ecf51a49d7917db724be4bd7b0 3 | timeCreated: 1510747627 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/UI/UILoading/Component.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ac25f3157c14a3caac468fb7971aab4 3 | timeCreated: 1510747627 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/Unit.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/Unit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/Unit.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/UnitComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/UnitComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/UnitFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/UnitFactory.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Demo/UnitFactory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Demo/UnitFactory.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Filter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Filter.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Filter/FilterEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Filter/FilterEntity.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Filter/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Filter/IFilter.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Filter/IFilter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Filter/IFilter.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/AMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/AMHandler.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/AMHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51f27baf9bcf4588a008ab171d42ffd7 3 | timeCreated: 1503744375 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/ErrorCode.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/IMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/IMHandler.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/IMHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6081581f6dde45a0889b8593bdedf860 3 | timeCreated: 1503744375 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/IMessage.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/IMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/IMessage.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/IMessageDispatcher.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69481855785b4b59834c766e4e2798e1 3 | timeCreated: 1503568535 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/MessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/MessageInfo.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/MessagePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/MessagePool.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/MessageProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/MessageProxy.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/Network.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/Network.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/Network/KCP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/Network/KCP.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/Network/TCP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/Network/TCP.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/Opcode.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/Opcode.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/Opcode.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/OpcodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/OpcodeHelper.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/OuterMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/OuterMessage.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/OuterOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/OuterOpcode.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/RpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/RpcException.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/Session.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Message/Session.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Message/Session.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Numeric.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Numeric.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Numeric/NumericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Numeric/NumericType.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Pathfinding.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Pathfinding.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Pathfinding/AstarPathfindingProject/Readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37e2b7ba5db684426ab22f42ef266b76 3 | -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Pathfinding/AstarPathfindingProject/Readme_upgrading.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 893b17192239c453594fc4d8e250d5e8 3 | -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Pathfinding/AstarPathfindingProject/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b30aa8ff756d44008247c6f4f1b94fd 3 | -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Pathfinding/Recast.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd576eb41946424faaba280d738e2e60 3 | timeCreated: 1539058458 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Pathfinding/Recast/IntRect.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b89e67d2863a4818b77c9a50117642d4 3 | timeCreated: 1539163907 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/Pathfinding/Recast/NN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/Pathfinding/Recast/NN.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/CanvasConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/CanvasConfig.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/CanvasConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8347f75bbf20473292de676504ad7398 3 | timeCreated: 1504162087 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/LayerNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/LayerNames.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/LayerNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0313ab7e20994a3eabf5ac4af2649ae9 3 | timeCreated: 1504163170 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/UI.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/UI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7dfefa42c5684a1880cca4beccfb8234 3 | timeCreated: 1510747768 -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/UIComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/UIComponent.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/UIComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/UIComponent.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/UIFactoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/UIFactoryAttribute.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/UIType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/UIType.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Module/UI/UIType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Module/UI/UIType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7ff51f926ae4716829bec2b134d8d89 3 | timeCreated: 1504163325 -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/AppType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/AppType.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/AppType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/AppType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/Define.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/Define.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/Define.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/Define.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/GizmosDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/GizmosDebug.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/GizmosDebug.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/GizmosDebug.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/IInstanceMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/IInstanceMethod.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/IInstanceMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/IInstanceMethod.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/ILStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/ILStaticMethod.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/ILStaticMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/ILStaticMethod.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/MonoStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/MonoStaticMethod.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/MonoStaticMethod.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/MonoStaticMethod.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/MotionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/MotionType.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/MotionType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/MotionType.cs.meta -------------------------------------------------------------------------------- /Unity/Assets/Model/Other/ReferenceCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Other/ReferenceCollector.cs -------------------------------------------------------------------------------- /Unity/Assets/Model/Unity.Model.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Unity.Model.asmdef -------------------------------------------------------------------------------- /Unity/Assets/Model/Unity.Model.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Model/Unity.Model.asmdef.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Android/libs.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Android/libs/armeabi-v7a.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Android/libs/x86.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Android/libs/x86/libkcp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Android/libs/x86/libkcp.so -------------------------------------------------------------------------------- /Unity/Assets/Plugins/AstarPathfindingProject.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/AstarPathfindingProject.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/AstarPathfindingProject/DotNetZip/DotNetZipLicense.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59ba0bf2b49f14a96917a04cee5df27e 3 | -------------------------------------------------------------------------------- /Unity/Assets/Plugins/AstarPathfindingProject/dependencies.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfd9baf6289e54259afb1420c5bee619 3 | -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Editor.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Editor/JetBrains.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Editor/JetBrains.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Editor/npoi.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Editor/npoi.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Editor/npoi/NPOI.OOXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Editor/npoi/NPOI.OOXML.dll -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Editor/npoi/NPOI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Editor/npoi/NPOI.dll -------------------------------------------------------------------------------- /Unity/Assets/Plugins/Editor/npoi/NPOI.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/Editor/npoi/NPOI.dll.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Unity/Assets/Plugins/MacOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/MacOS.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/MacOS/kcp.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/MacOS/kcp.bundle.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/iOS.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/iOS/kcp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/iOS/kcp.a -------------------------------------------------------------------------------- /Unity/Assets/Plugins/iOS/kcp.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/iOS/kcp.a.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/x86.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/x86/kcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/x86/kcp.dll -------------------------------------------------------------------------------- /Unity/Assets/Plugins/x86/kcp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/x86/kcp.dll.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/x86_64.meta -------------------------------------------------------------------------------- /Unity/Assets/Plugins/x86_64/kcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/x86_64/kcp.dll -------------------------------------------------------------------------------- /Unity/Assets/Plugins/x86_64/kcp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Plugins/x86_64/kcp.dll.meta -------------------------------------------------------------------------------- /Unity/Assets/Res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Code.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Code/Hotfix.dll.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Code/Hotfix.dll.bytes -------------------------------------------------------------------------------- /Unity/Assets/Res/Code/Hotfix.dll.bytes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Code/Hotfix.dll.bytes.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Code/Hotfix.pdb.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Code/Hotfix.pdb.bytes -------------------------------------------------------------------------------- /Unity/Assets/Res/Code/Hotfix.pdb.bytes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Code/Hotfix.pdb.bytes.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Config.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Config/BuffConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Config/BuffConfig.txt -------------------------------------------------------------------------------- /Unity/Assets/Res/Config/BuffConfig.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Config/BuffConfig.txt.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Config/GlobalProto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Config/GlobalProto.txt -------------------------------------------------------------------------------- /Unity/Assets/Res/Config/GlobalProto.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Config/GlobalProto.txt.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Config/UnitConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Config/UnitConfig.txt -------------------------------------------------------------------------------- /Unity/Assets/Res/Config/UnitConfig.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Config/UnitConfig.txt.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Unit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Unit.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Unit/Skeleton.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Unit/Skeleton.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Unit/Skeleton/Ani.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Unit/Skeleton/Ani.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Unit/Skeleton/Ani/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Unit/Skeleton/Ani/Materials.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Unit/Skeleton/Character.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Unit/Skeleton/Character.meta -------------------------------------------------------------------------------- /Unity/Assets/Res/Unit/Skeleton/Skeleton.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Unit/Skeleton/Skeleton.prefab -------------------------------------------------------------------------------- /Unity/Assets/Res/Unit/Skeleton/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Res/Unit/Skeleton/Texture.meta -------------------------------------------------------------------------------- /Unity/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources.meta -------------------------------------------------------------------------------- /Unity/Assets/Resources/KV.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/KV.prefab -------------------------------------------------------------------------------- /Unity/Assets/Resources/KV.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/KV.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Resources/Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/Shader.meta -------------------------------------------------------------------------------- /Unity/Assets/Resources/Shader/Plane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/Shader/Plane.mat -------------------------------------------------------------------------------- /Unity/Assets/Resources/Shader/Plane.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/Shader/Plane.mat.meta -------------------------------------------------------------------------------- /Unity/Assets/Resources/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/UI.meta -------------------------------------------------------------------------------- /Unity/Assets/Resources/UI/UILoading.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/UI/UILoading.prefab -------------------------------------------------------------------------------- /Unity/Assets/Resources/UI/UILoading.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Resources/UI/UILoading.prefab.meta -------------------------------------------------------------------------------- /Unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes.meta -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Init.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Init.unity -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Init.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Init.unity.meta -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Map.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Map.meta -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Map.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Map.unity -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Map.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Map.unity.meta -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Map/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Map/LightingData.asset -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Map/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Map/LightingData.asset.meta -------------------------------------------------------------------------------- /Unity/Assets/Scenes/Map/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/Scenes/Map/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Unity/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /Unity/Assets/StreamingAssets/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/StreamingAssets/Version.txt -------------------------------------------------------------------------------- /Unity/Assets/StreamingAssets/Version.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/StreamingAssets/Version.txt.meta -------------------------------------------------------------------------------- /Unity/Assets/ThirdParty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/ThirdParty.meta -------------------------------------------------------------------------------- /Unity/Assets/ThirdParty/Google.Protobuf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/ThirdParty/Google.Protobuf.meta -------------------------------------------------------------------------------- /Unity/Assets/ThirdParty/ILRuntime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/ThirdParty/ILRuntime.meta -------------------------------------------------------------------------------- /Unity/Assets/ThirdParty/ILRuntime/LitJson.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/ThirdParty/ILRuntime/LitJson.meta -------------------------------------------------------------------------------- /Unity/Assets/ThirdParty/ILRuntime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/ThirdParty/ILRuntime/README.md -------------------------------------------------------------------------------- /Unity/Assets/ThirdParty/MongoDB.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/ThirdParty/MongoDB.meta -------------------------------------------------------------------------------- /Unity/Assets/ThirdParty/Unity.ThirdParty.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/ThirdParty/Unity.ThirdParty.asmdef -------------------------------------------------------------------------------- /Unity/Assets/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/link.xml -------------------------------------------------------------------------------- /Unity/Assets/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Assets/link.xml.meta -------------------------------------------------------------------------------- /Unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Packages/manifest.json -------------------------------------------------------------------------------- /Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.21f1 2 | -------------------------------------------------------------------------------- /Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Unity/Tools/DevAutoCompile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Tools/DevAutoCompile.bat -------------------------------------------------------------------------------- /Unity/Tools/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Tools/Mono.Cecil.dll -------------------------------------------------------------------------------- /Unity/Tools/pdb2mdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Tools/pdb2mdb.exe -------------------------------------------------------------------------------- /Unity/Unity.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.Editor.csproj -------------------------------------------------------------------------------- /Unity/Unity.Hotfix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.Hotfix.csproj -------------------------------------------------------------------------------- /Unity/Unity.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.Model.csproj -------------------------------------------------------------------------------- /Unity/Unity.ThirdParty.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.ThirdParty.csproj -------------------------------------------------------------------------------- /Unity/Unity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.sln -------------------------------------------------------------------------------- /Unity/Unity.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.sln.DotSettings -------------------------------------------------------------------------------- /Unity/Unity.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.sln.DotSettings.user -------------------------------------------------------------------------------- /Unity/Unity.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/Unity/Unity.userprefs -------------------------------------------------------------------------------- /说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/putifeng/ETIndependent/HEAD/说明.txt --------------------------------------------------------------------------------