├── .gitattributes ├── .gitignore ├── ETClient ├── .gitignore ├── FileServer │ └── FileServer.pdb ├── Message │ ├── HotfixMessage.cs │ ├── HotfixOpcode.cs │ ├── InnerMessage.cs │ ├── InnerOpcode.cs │ ├── OuterMessage.cs │ └── OuterOpcode.cs ├── Proto │ ├── HotfixMessage.proto │ ├── InnerMessage.proto │ ├── OuterMessage.proto │ ├── Proto2CS.1.0.0.nupkg │ ├── Proto2CS.deps.json │ ├── Proto2CS.dll │ ├── Proto2CS.pdb │ ├── Proto2CS.runtimeconfig.dev.json │ ├── Proto2CS.runtimeconfig.json │ ├── protoc.exe │ └── 编译Protoc.bat ├── Tools │ └── Proto2CS │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── ProcessHelper.cs │ │ ├── Program.cs │ │ ├── Proto2CS.csproj │ │ ├── Proto2CS.sln │ │ └── global.json └── Unity │ ├── .vscode │ └── settings.json │ ├── Assets │ ├── ETFramework │ │ ├── Bundles │ │ │ └── Config │ │ │ │ ├── BuffConfig.txt │ │ │ │ ├── Config.prefab │ │ │ │ ├── GlobalProto.txt │ │ │ │ ├── StartProcessConfig.txt │ │ │ │ ├── StartSceneConfig.txt │ │ │ │ ├── StartZoneConfig.txt │ │ │ │ └── UnitConfig.txt │ │ ├── ETCore │ │ │ ├── Base │ │ │ │ ├── Async │ │ │ │ │ ├── AsyncETTaskMethodBuilder.cs │ │ │ │ │ ├── AsyncETVoidMethodBuilder.cs │ │ │ │ │ ├── AsyncMethodBuilderAttribute.cs │ │ │ │ │ ├── ETCancellationTokenSource.cs │ │ │ │ │ ├── ETTask.cs │ │ │ │ │ ├── ETTaskCompletionSource.cs │ │ │ │ │ ├── ETTaskFactory.cs │ │ │ │ │ ├── ETVoid.cs │ │ │ │ │ ├── IAwaiter.cs │ │ │ │ │ └── MoveNextRunner.cs │ │ │ │ ├── DoubleMap.cs │ │ │ │ ├── Event │ │ │ │ │ ├── Env.cs │ │ │ │ │ ├── EnvKey.cs │ │ │ │ │ ├── EventAttribute.cs │ │ │ │ │ ├── EventIdType.cs │ │ │ │ │ └── IEvent.cs │ │ │ │ ├── Helper │ │ │ │ │ ├── ByteHelper.cs │ │ │ │ │ ├── DllHelper.cs │ │ │ │ │ ├── Dumper.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 │ │ │ │ ├── Log.cs │ │ │ │ ├── LogType.cs │ │ │ │ ├── Logger │ │ │ │ │ ├── ILog.cs │ │ │ │ │ └── NLogAdapter.cs │ │ │ │ ├── MultiMap.cs │ │ │ │ ├── Object │ │ │ │ │ ├── BaseAttribute.cs │ │ │ │ │ ├── Component.cs │ │ │ │ │ ├── ComponentFactory.cs │ │ │ │ │ ├── ComponentView.cs │ │ │ │ │ ├── ComponentWithId.cs │ │ │ │ │ ├── Entity.cs │ │ │ │ │ ├── EntityEventAttribute.cs │ │ │ │ │ ├── EventProxy.cs │ │ │ │ │ ├── EventSystem.cs │ │ │ │ │ ├── HideInHierarchy.cs │ │ │ │ │ ├── IAwakeSystem.cs │ │ │ │ │ ├── IChangeSystem.cs │ │ │ │ │ ├── IDeserializeSystem.cs │ │ │ │ │ ├── IDestroySystem.cs │ │ │ │ │ ├── IFixedUpdateSystem.cs │ │ │ │ │ ├── ILateUpdateSystem.cs │ │ │ │ │ ├── ILoadSystem.cs │ │ │ │ │ ├── ISerializeToEntity.cs │ │ │ │ │ ├── IStartSystem.cs │ │ │ │ │ ├── IUpdateSystem.cs │ │ │ │ │ ├── Object.cs │ │ │ │ │ ├── ObjectPool.cs │ │ │ │ │ └── ObjectSystemAttribute.cs │ │ │ │ ├── OneThreadSynchronizationContext.cs │ │ │ │ ├── ProcessHelper.cs │ │ │ │ ├── QueueDictionary.cs │ │ │ │ ├── RecyclableMemoryStream │ │ │ │ │ ├── Events.cs │ │ │ │ │ ├── RecyclableMemoryStream.cs │ │ │ │ │ └── RecyclableMemoryStreamManager.cs │ │ │ │ ├── TryLocker.cs │ │ │ │ ├── UnOrderMultiMap.cs │ │ │ │ └── UnityEngine │ │ │ │ │ ├── Bounds.cs │ │ │ │ │ ├── Mathf.cs │ │ │ │ │ ├── Matrix3x3.cs │ │ │ │ │ ├── Matrix4x4.cs │ │ │ │ │ ├── Quaternion.cs │ │ │ │ │ ├── Time.cs │ │ │ │ │ ├── Vector2.cs │ │ │ │ │ ├── Vector3.cs │ │ │ │ │ └── Vector4.cs │ │ │ ├── Component │ │ │ │ ├── AppManagerComponent.cs │ │ │ │ ├── Config │ │ │ │ │ ├── ClientConfig.cs │ │ │ │ │ ├── DBConfig.cs │ │ │ │ │ ├── EquipConfig.cs │ │ │ │ │ ├── HttpConfig.cs │ │ │ │ │ ├── InnerConfig.cs │ │ │ │ │ ├── ItemConfig.cs │ │ │ │ │ ├── MapConfig.cs │ │ │ │ │ ├── OuterConfig.cs │ │ │ │ │ ├── SkillConfig.cs │ │ │ │ │ ├── StartConfig.cs │ │ │ │ │ └── UnitConfig.cs │ │ │ │ ├── ConsoleComponent.cs │ │ │ │ ├── KVComponent.cs │ │ │ │ ├── OpcodeTypeComponent.cs │ │ │ │ ├── OptionComponent.cs │ │ │ │ ├── PlayerComponent.cs │ │ │ │ ├── RealmGateAddressComponent.cs │ │ │ │ ├── ReplComponent.cs │ │ │ │ ├── SessionComponent.cs │ │ │ │ ├── SessionUserComponent.cs │ │ │ │ ├── StartConfigComponent.cs │ │ │ │ ├── TimerComponent.cs │ │ │ │ ├── UnitComponent.cs │ │ │ │ └── UserComponent.cs │ │ │ ├── Core.cs │ │ │ ├── Entity │ │ │ │ ├── Game.cs │ │ │ │ ├── Hotfix.cs │ │ │ │ ├── Player.cs │ │ │ │ ├── Scene.cs │ │ │ │ ├── Unit.cs │ │ │ │ └── User.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 │ │ │ │ ├── Config │ │ │ │ │ ├── ACategory.cs │ │ │ │ │ ├── AConfigComponent.cs │ │ │ │ │ ├── ConfigAttribute.cs │ │ │ │ │ ├── ConfigComponent.cs │ │ │ │ │ ├── ConfigHelper.cs │ │ │ │ │ └── IConfig.cs │ │ │ │ ├── Message │ │ │ │ │ ├── AMHandler.cs │ │ │ │ │ ├── AMRpcHandler.cs │ │ │ │ │ ├── ErrorCode.cs │ │ │ │ │ ├── HotfixMessage.cs │ │ │ │ │ ├── HotfixOpcode.cs │ │ │ │ │ ├── IMHandler.cs │ │ │ │ │ ├── IMessage.cs │ │ │ │ │ ├── IMessageDispatcher.cs │ │ │ │ │ ├── IMessagePacker.cs │ │ │ │ │ ├── InnerMessage.cs │ │ │ │ │ ├── InnerOpcode.cs │ │ │ │ │ ├── MessageAttribute.cs │ │ │ │ │ ├── MessageDispatcherComponent.cs │ │ │ │ │ ├── MessageHandlerAttribute.cs │ │ │ │ │ ├── MessageInfo.cs │ │ │ │ │ ├── MessagePool.cs │ │ │ │ │ ├── MessageProxy.cs │ │ │ │ │ ├── MongoPacker.cs │ │ │ │ │ ├── NetInnerComponent.cs │ │ │ │ │ ├── NetOuterComponent.cs │ │ │ │ │ ├── Network │ │ │ │ │ │ ├── AChannel.cs │ │ │ │ │ │ ├── AService.cs │ │ │ │ │ │ ├── Circularbuffer.cs │ │ │ │ │ │ ├── KCP │ │ │ │ │ │ │ ├── KChannel.cs │ │ │ │ │ │ │ ├── KService.cs │ │ │ │ │ │ │ └── Kcp.cs │ │ │ │ │ │ ├── NetworkHelper.cs │ │ │ │ │ │ ├── TCP │ │ │ │ │ │ │ ├── PacketParser.cs │ │ │ │ │ │ │ ├── TChannel.cs │ │ │ │ │ │ │ └── TService.cs │ │ │ │ │ │ └── WebSocket │ │ │ │ │ │ │ ├── WChannel.cs │ │ │ │ │ │ │ └── WService.cs │ │ │ │ │ ├── NetworkComponent.cs │ │ │ │ │ ├── Opcode.cs │ │ │ │ │ ├── OpcodeHelper.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 │ │ │ │ │ └── NumericWatcher_Hp_ShowUI.cs │ │ │ ├── Other │ │ │ │ ├── AppType.cs │ │ │ │ ├── Define.cs │ │ │ │ ├── GizmosDebug.cs │ │ │ │ ├── IInstanceMethod.cs │ │ │ │ ├── LayerNames.cs │ │ │ │ ├── MonoStaticMethod.cs │ │ │ │ ├── MotionType.cs │ │ │ │ └── Options.cs │ │ │ └── Unity.ETCore.asmdef │ │ ├── Editor │ │ │ ├── BuildEditor │ │ │ │ ├── BuildAssetBundles.cs │ │ │ │ ├── BuildEditor.cs │ │ │ │ ├── BuildHelper.cs │ │ │ │ └── BuildHotfixEditor.cs │ │ │ ├── GlobalConfigEditor │ │ │ │ └── GlobalConfigEditor.cs │ │ │ ├── Helper │ │ │ │ └── EditorResHelper.cs │ │ │ ├── Proto2CsEditor │ │ │ │ ├── InnerProto2CS.cs │ │ │ │ └── Proto2CSEditor.cs │ │ │ ├── ReferenceCollectorEditor │ │ │ │ └── ReferenceCollectorEditor.cs │ │ │ └── Unity.Editor.asmdef │ │ ├── Model │ │ │ ├── Component │ │ │ │ ├── GlobalConfigComponent.cs │ │ │ │ ├── GlobalProto.cs │ │ │ │ ├── ReferenceCollector.cs │ │ │ │ ├── ResourcesComponent.cs │ │ │ │ └── SceneChangeComponent.cs │ │ │ ├── Helper │ │ │ │ ├── ActionHelper.cs │ │ │ │ ├── BundleHelper.cs │ │ │ │ ├── ClientConfigHelper.cs │ │ │ │ ├── GameObjectHelper.cs │ │ │ │ ├── PathHelper.cs │ │ │ │ ├── PositionHelper.cs │ │ │ │ └── ResourcesHelper.cs │ │ │ ├── Model.cs │ │ │ ├── Module │ │ │ │ ├── AssetsBundle │ │ │ │ │ ├── AssetsBundleLoaderAsync.cs │ │ │ │ │ ├── AssetsLoaderAsync.cs │ │ │ │ │ ├── BundleDownloaderComponent.cs │ │ │ │ │ ├── UnityWebRequestAsync.cs │ │ │ │ │ └── VersionConfig.cs │ │ │ │ ├── Filter │ │ │ │ │ ├── FilterAttribute.cs │ │ │ │ │ ├── FilterComponent.cs │ │ │ │ │ ├── FilterEntity.cs │ │ │ │ │ └── IFilter.cs │ │ │ │ ├── Message │ │ │ │ │ ├── NetOuterComponentSystem.cs │ │ │ │ │ └── OuterMessageDispatcher.cs │ │ │ │ └── UIComponent │ │ │ │ │ ├── CanvasConfig.cs │ │ │ │ │ ├── IUIFactory.cs │ │ │ │ │ ├── UI.cs │ │ │ │ │ ├── UIComponent.cs │ │ │ │ │ ├── UIFactoryAttribute.cs │ │ │ │ │ └── UIType.cs │ │ │ ├── Other │ │ │ │ └── GizmosDebug.cs │ │ │ └── Unity.Model.asmdef │ │ └── Resources │ │ │ └── KV.prefab │ ├── GameDemo │ │ ├── Materials │ │ │ └── env_DarkTile.mat │ │ ├── Resources │ │ │ └── Shader │ │ │ │ └── Plane.mat │ │ ├── Script │ │ │ ├── Factory │ │ │ │ ├── PlayerFactory.cs │ │ │ │ ├── UIResources.cs │ │ │ │ ├── UnitFactory.cs │ │ │ │ └── UnitResources.cs │ │ │ ├── Init.cs │ │ │ ├── Other │ │ │ │ ├── DemoEventIdType.cs │ │ │ │ └── UIType.cs │ │ │ ├── UI │ │ │ │ ├── UILoading │ │ │ │ │ ├── UILoadingComponent.cs │ │ │ │ │ └── UILoadingFactory.cs │ │ │ │ ├── UILogin │ │ │ │ │ ├── UILoginComponent.cs │ │ │ │ │ └── UILoginFactory.cs │ │ │ │ └── UIRegister │ │ │ │ │ ├── UIRegisterComponent.cs │ │ │ │ │ └── UIRegisterFactory.cs │ │ │ └── Unity.Demo.asmdef │ │ └── Textures │ │ │ └── env_DarkTile.png │ ├── 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 │ │ │ ├── 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 │ ├── Scenes.meta │ ├── Scenes │ │ ├── Init.unity │ │ └── Init.unity.meta │ ├── ThirdParty.meta │ ├── ThirdParty │ │ ├── Google.Protobuf.meta │ │ ├── Google.Protobuf │ │ │ ├── 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 │ │ ├── LitJson │ │ │ ├── IJsonWrapper.cs │ │ │ ├── JsonData.cs │ │ │ ├── JsonException.cs │ │ │ ├── JsonMapper.cs │ │ │ ├── JsonMockWrapper.cs │ │ │ ├── JsonReader.cs │ │ │ ├── JsonWriter.cs │ │ │ ├── Lexer.cs │ │ │ └── ParserToken.cs │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ ├── Unity.ThirdParty.asmdef │ │ └── Unity.ThirdParty.asmdef.meta │ ├── link.xml │ └── link.xml.meta │ ├── 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 │ └── XRSettings.asset │ ├── Unity.Demo.csproj │ ├── Unity.ETCore.csproj │ ├── Unity.Editor.csproj │ ├── Unity.Model.csproj │ ├── Unity.ThirdParty.csproj │ ├── Unity.sln │ └── env_Dark.unitypackage ├── ETServer ├── .gitignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── Config │ ├── BuffConfig.txt │ ├── MapConfig.txt │ ├── SkillConfig.txt │ ├── StartConfig │ │ ├── 127.0.0.1.txt │ │ ├── Benchmark.txt │ │ ├── BenchmarkWebsocket.txt │ │ ├── LocalAllServer.txt │ │ └── LocalAllServerWebsocket.txt │ ├── UnitConfig.txt │ └── graph.bytes ├── Proto │ ├── HotfixMessage.proto │ ├── InnerMessage.proto │ └── OuterMessage.proto ├── Server │ ├── .vs │ │ └── Server │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── App │ │ ├── App.config │ │ ├── NLog.config │ │ ├── NLog.xsd │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── Server.App.csproj │ ├── ET.Core │ │ ├── Base │ │ │ ├── Async │ │ │ │ ├── AsyncETTaskMethodBuilder.cs │ │ │ │ ├── AsyncETVoidMethodBuilder.cs │ │ │ │ ├── AsyncMethodBuilderAttribute.cs │ │ │ │ ├── ETCancellationTokenSource.cs │ │ │ │ ├── ETTask.cs │ │ │ │ ├── ETTaskCompletionSource.cs │ │ │ │ ├── ETTaskFactory.cs │ │ │ │ ├── ETVoid.cs │ │ │ │ ├── IAwaiter.cs │ │ │ │ └── MoveNextRunner.cs │ │ │ ├── DoubleMap.cs │ │ │ ├── Event │ │ │ │ ├── Env.cs │ │ │ │ ├── EnvKey.cs │ │ │ │ ├── EventAttribute.cs │ │ │ │ ├── EventIdType.cs │ │ │ │ └── IEvent.cs │ │ │ ├── Helper │ │ │ │ ├── ByteHelper.cs │ │ │ │ ├── DllHelper.cs │ │ │ │ ├── Dumper.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 │ │ │ ├── Log.cs │ │ │ ├── LogType.cs │ │ │ ├── Logger │ │ │ │ ├── ILog.cs │ │ │ │ └── NLogAdapter.cs │ │ │ ├── MultiMap.cs │ │ │ ├── Object │ │ │ │ ├── BaseAttribute.cs │ │ │ │ ├── Component.cs │ │ │ │ ├── ComponentFactory.cs │ │ │ │ ├── ComponentView.cs │ │ │ │ ├── ComponentWithId.cs │ │ │ │ ├── Entity.cs │ │ │ │ ├── EntityEventAttribute.cs │ │ │ │ ├── EventProxy.cs │ │ │ │ ├── EventSystem.cs │ │ │ │ ├── HideInHierarchy.cs │ │ │ │ ├── IAwakeSystem.cs │ │ │ │ ├── IChangeSystem.cs │ │ │ │ ├── IDeserializeSystem.cs │ │ │ │ ├── IDestroySystem.cs │ │ │ │ ├── IFixedUpdateSystem.cs │ │ │ │ ├── ILateUpdateSystem.cs │ │ │ │ ├── ILoadSystem.cs │ │ │ │ ├── ISerializeToEntity.cs │ │ │ │ ├── IStartSystem.cs │ │ │ │ ├── IUpdateSystem.cs │ │ │ │ ├── Object.cs │ │ │ │ ├── ObjectPool.cs │ │ │ │ └── ObjectSystemAttribute.cs │ │ │ ├── OneThreadSynchronizationContext.cs │ │ │ ├── ProcessHelper.cs │ │ │ ├── QueueDictionary.cs │ │ │ ├── RecyclableMemoryStream │ │ │ │ ├── Events.cs │ │ │ │ ├── RecyclableMemoryStream.cs │ │ │ │ └── RecyclableMemoryStreamManager.cs │ │ │ ├── TryLocker.cs │ │ │ ├── UnOrderMultiMap.cs │ │ │ └── UnityEngine │ │ │ │ ├── Bounds.cs │ │ │ │ ├── Mathf.cs │ │ │ │ ├── Matrix3x3.cs │ │ │ │ ├── Matrix4x4.cs │ │ │ │ ├── Quaternion.cs │ │ │ │ ├── Time.cs │ │ │ │ ├── Vector2.cs │ │ │ │ ├── Vector3.cs │ │ │ │ └── Vector4.cs │ │ ├── Component │ │ │ ├── AppManagerComponent.cs │ │ │ ├── Config │ │ │ │ ├── ClientConfig.cs │ │ │ │ ├── DBConfig.cs │ │ │ │ ├── EquipConfig.cs │ │ │ │ ├── HttpConfig.cs │ │ │ │ ├── InnerConfig.cs │ │ │ │ ├── ItemConfig.cs │ │ │ │ ├── MapConfig.cs │ │ │ │ ├── OuterConfig.cs │ │ │ │ ├── SkillConfig.cs │ │ │ │ ├── StartConfig.cs │ │ │ │ └── UnitConfig.cs │ │ │ ├── ConsoleComponent.cs │ │ │ ├── KVComponent.cs │ │ │ ├── OpcodeTypeComponent.cs │ │ │ ├── OptionComponent.cs │ │ │ ├── PlayerComponent.cs │ │ │ ├── RealmGateAddressComponent.cs │ │ │ ├── ReplComponent.cs │ │ │ ├── SessionComponent.cs │ │ │ ├── SessionUserComponent.cs │ │ │ ├── StartConfigComponent.cs │ │ │ ├── TimerComponent.cs │ │ │ ├── UnitComponent.cs │ │ │ └── UserComponent.cs │ │ ├── Core.cs │ │ ├── Entity │ │ │ ├── Game.cs │ │ │ ├── Hotfix.cs │ │ │ ├── Player.cs │ │ │ ├── Scene.cs │ │ │ ├── Unit.cs │ │ │ └── User.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 │ │ │ ├── Config │ │ │ │ ├── ACategory.cs │ │ │ │ ├── AConfigComponent.cs │ │ │ │ ├── ConfigAttribute.cs │ │ │ │ ├── ConfigComponent.cs │ │ │ │ ├── ConfigHelper.cs │ │ │ │ └── IConfig.cs │ │ │ ├── DB │ │ │ │ ├── DBCacheComponent.cs │ │ │ │ ├── DBComponent.cs │ │ │ │ ├── DBProxyComponent.cs │ │ │ │ ├── DBQuery2JsonTask.cs │ │ │ │ ├── DBQueryBatchTask.cs │ │ │ │ ├── DBQueryJsonTask.cs │ │ │ │ ├── DBQueryTask.cs │ │ │ │ ├── DBSaveBatchTask.cs │ │ │ │ ├── DBSaveTask.cs │ │ │ │ ├── DBTask.cs │ │ │ │ └── DBTaskQueue.cs │ │ │ ├── Message │ │ │ │ ├── AMHandler.cs │ │ │ │ ├── AMRpcHandler.cs │ │ │ │ ├── ErrorCode.cs │ │ │ │ ├── HotfixMessage.cs │ │ │ │ ├── HotfixOpcode.cs │ │ │ │ ├── IMHandler.cs │ │ │ │ ├── IMessage.cs │ │ │ │ ├── IMessageDispatcher.cs │ │ │ │ ├── IMessagePacker.cs │ │ │ │ ├── InnerMessage.cs │ │ │ │ ├── InnerOpcode.cs │ │ │ │ ├── MessageAttribute.cs │ │ │ │ ├── MessageDispatcherComponent.cs │ │ │ │ ├── MessageHandlerAttribute.cs │ │ │ │ ├── MessageInfo.cs │ │ │ │ ├── MessagePool.cs │ │ │ │ ├── MessageProxy.cs │ │ │ │ ├── MongoPacker.cs │ │ │ │ ├── NetInnerComponent.cs │ │ │ │ ├── NetOuterComponent.cs │ │ │ │ ├── Network │ │ │ │ │ ├── AChannel.cs │ │ │ │ │ ├── AService.cs │ │ │ │ │ ├── Circularbuffer.cs │ │ │ │ │ ├── KCP │ │ │ │ │ │ ├── KChannel.cs │ │ │ │ │ │ ├── KService.cs │ │ │ │ │ │ └── Kcp.cs │ │ │ │ │ ├── NetworkHelper.cs │ │ │ │ │ ├── TCP │ │ │ │ │ │ ├── PacketParser.cs │ │ │ │ │ │ ├── TChannel.cs │ │ │ │ │ │ └── TService.cs │ │ │ │ │ └── WebSocket │ │ │ │ │ │ ├── WChannel.cs │ │ │ │ │ │ └── WService.cs │ │ │ │ ├── NetworkComponent.cs │ │ │ │ ├── Opcode.cs │ │ │ │ ├── OpcodeHelper.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 │ │ │ │ └── NumericWatcher_Hp_ShowUI.cs │ │ ├── Other │ │ │ ├── AppType.cs │ │ │ ├── Define.cs │ │ │ ├── GizmosDebug.cs │ │ │ ├── IInstanceMethod.cs │ │ │ ├── LayerNames.cs │ │ │ ├── MonoStaticMethod.cs │ │ │ ├── MotionType.cs │ │ │ └── Options.cs │ │ └── Server.ET.Core.csproj │ ├── Hotfix │ │ ├── Handler │ │ │ ├── Actor_TransferHandler.cs │ │ │ ├── C2G_PlayerInfoHandler.cs │ │ │ ├── C2M_ReloadHandler.cs │ │ │ ├── C2M_TestActorRequestHandler.cs │ │ │ ├── C2M_TestRequestHandler.cs │ │ │ ├── C2R_PingHandler.cs │ │ │ ├── G2C_TestHandler.cs │ │ │ ├── M2A_ReloadHandler.cs │ │ │ └── M2M_TrasferUnitRequest.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 │ │ │ ├── DB │ │ │ │ ├── DBProxyComponentSystem.cs │ │ │ │ ├── DBQuery2JsonRequestHandler.cs │ │ │ │ ├── DBQueryBatchRequestHandler.cs │ │ │ │ ├── DBQueryJsonRequestHandler.cs │ │ │ │ ├── DBQueryRequestHandler.cs │ │ │ │ ├── DBSaveBatchRequestHandler.cs │ │ │ │ └── DBSaveRequestHandler.cs │ │ │ └── Message │ │ │ │ ├── InnerMessageDispatcher.cs │ │ │ │ ├── MessageDispatherComponentSystem.cs │ │ │ │ ├── MessageHelper.cs │ │ │ │ ├── MessagePool.cs │ │ │ │ ├── NetInnerComponentSystem.cs │ │ │ │ ├── NetOuterComponentSystem.cs │ │ │ │ └── OuterMessageDispatcher.cs │ │ ├── Server.Hotfix.csproj │ │ └── System │ │ │ ├── ConfigComponentSystem.cs │ │ │ ├── RealmGateAddressComponentSystem.cs │ │ │ └── SessionUserComponentSystem.cs │ ├── Server.sln │ ├── 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 │ │ ├── KcpLib │ │ │ ├── KcpLib.csproj │ │ │ ├── kcp.dll │ │ │ ├── libkcp.dylib │ │ │ └── libkcp.so │ │ ├── MongoDBDriver │ │ │ ├── MongoDB.Bson │ │ │ │ ├── IO │ │ │ │ │ ├── ElementAppendingBsonWriter.cs │ │ │ │ │ └── WrappingBsonWriter.cs │ │ │ │ ├── MongoDB.Bson.csproj │ │ │ │ └── Serialization │ │ │ │ │ └── Serializers │ │ │ │ │ ├── ElementAppendingSerializer.cs │ │ │ │ │ └── ReadOnlyDictionaryInterfaceImplementerSerializer.cs │ │ │ ├── MongoDB.Driver.Core │ │ │ │ ├── ChangeStreamDocument.cs │ │ │ │ ├── ChangeStreamDocumentCollectionNamespaceSerializer.cs │ │ │ │ ├── ChangeStreamDocumentSerializer.cs │ │ │ │ ├── ChangeStreamFullDocumentOptions.cs │ │ │ │ ├── ChangeStreamOperationType.cs │ │ │ │ ├── ChangeStreamOperationTypeSerializer.cs │ │ │ │ ├── ChangeStreamUpdateDescription.cs │ │ │ │ ├── ChangeStreamUpdateDescriptionSerializer.cs │ │ │ │ ├── Core │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── SaslMapParser.cs │ │ │ │ │ │ ├── SaslPrepHelper.cs │ │ │ │ │ │ ├── ScramSha256Authenticator.cs │ │ │ │ │ │ ├── ScramShaAuthenticator.cs │ │ │ │ │ │ └── Vendored │ │ │ │ │ │ │ ├── CryptographyHelpers.cs │ │ │ │ │ │ │ ├── HashAlgorithmName.cs │ │ │ │ │ │ │ └── Rfc2898DeriveBytes.cs │ │ │ │ │ ├── Bindings │ │ │ │ │ │ ├── CoreServerSession.cs │ │ │ │ │ │ ├── CoreServerSessionPool.cs │ │ │ │ │ │ ├── CoreSession.cs │ │ │ │ │ │ ├── CoreSessionHandle.cs │ │ │ │ │ │ ├── CoreSessionOptions.cs │ │ │ │ │ │ ├── CoreTransaction.cs │ │ │ │ │ │ ├── CoreTransactionState.cs │ │ │ │ │ │ ├── ICoreServerSessionPool.cs │ │ │ │ │ │ ├── ICoreServerSesssion.cs │ │ │ │ │ │ ├── ICoreSession.cs │ │ │ │ │ │ ├── NoCoreServerSession.cs │ │ │ │ │ │ ├── NoCoreSession.cs │ │ │ │ │ │ ├── NonDisposingCoreSessionHandle.cs │ │ │ │ │ │ ├── ReferenceCountedCoreSession.cs │ │ │ │ │ │ ├── WrappingCoreServerSession.cs │ │ │ │ │ │ └── WrappingCoreSession.cs │ │ │ │ │ ├── Clusters │ │ │ │ │ │ ├── ClusterClock.cs │ │ │ │ │ │ └── IClusterClock.cs │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── SdamLoggingSettings.cs │ │ │ │ │ ├── Connections │ │ │ │ │ │ ├── IsMasterHelper.cs │ │ │ │ │ │ └── KeepAliveValues.cs │ │ │ │ │ ├── Events │ │ │ │ │ │ ├── Diagnostics │ │ │ │ │ │ │ └── TraceSourceSdamEventSubscriber.cs │ │ │ │ │ │ └── SdamInformationEvent.cs │ │ │ │ │ ├── Misc │ │ │ │ │ │ ├── FixedCountBatchableSourceSerializer.cs │ │ │ │ │ │ ├── IBatchableSource.cs │ │ │ │ │ │ └── SizeLimitingBatchableSourceSerializer.cs │ │ │ │ │ ├── Operations │ │ │ │ │ │ ├── ChangeStreamCursor.cs │ │ │ │ │ │ ├── ChangeStreamOperation.cs │ │ │ │ │ │ ├── CountDocumentsOperation.cs │ │ │ │ │ │ ├── DelayedEvaluationWriteConcernSerializer.cs │ │ │ │ │ │ ├── EndTransactionOperation.cs │ │ │ │ │ │ ├── IOperationClock.cs │ │ │ │ │ │ ├── IRetryableOperation.cs │ │ │ │ │ │ ├── OperationClock.cs │ │ │ │ │ │ ├── ReadConcernHelper.cs │ │ │ │ │ │ ├── RetryabilityHelper.cs │ │ │ │ │ │ ├── RetryableDeleteCommandOperation.cs │ │ │ │ │ │ ├── RetryableInsertCommandOperation.cs │ │ │ │ │ │ ├── RetryableUpdateCommandOperation.cs │ │ │ │ │ │ ├── RetryableWriteCommandOperationBase.cs │ │ │ │ │ │ ├── RetryableWriteContext.cs │ │ │ │ │ │ ├── RetryableWriteOperationExecutor.cs │ │ │ │ │ │ └── WriteConcernHelper.cs │ │ │ │ │ ├── Servers │ │ │ │ │ │ └── ClusterClockAdvancingCoreSession.cs │ │ │ │ │ └── WireProtocol │ │ │ │ │ │ ├── CommandUsingCommandMessageWireProtocol.cs │ │ │ │ │ │ ├── CommandUsingQueryMessageWireProtocol.cs │ │ │ │ │ │ └── Messages │ │ │ │ │ │ ├── CommandMessage.cs │ │ │ │ │ │ ├── CommandMessageDisposer.cs │ │ │ │ │ │ ├── CommandMessageSection.cs │ │ │ │ │ │ ├── CommandRequestMessage.cs │ │ │ │ │ │ ├── CommandResponseMessage.cs │ │ │ │ │ │ └── Encoders │ │ │ │ │ │ ├── BinaryEncoders │ │ │ │ │ │ ├── CommandMessageBinaryEncoder.cs │ │ │ │ │ │ ├── CommandRequestMessageBinaryEncoder.cs │ │ │ │ │ │ ├── CommandResponseMessageBinaryEncoder.cs │ │ │ │ │ │ └── OpMsgFlags.cs │ │ │ │ │ │ ├── CommandResponseMessageEncoderSelector.cs │ │ │ │ │ │ ├── IMessageEncoderPostProcessor.cs │ │ │ │ │ │ └── JsonEncoders │ │ │ │ │ │ ├── CommandMessageJsonEncoder.cs │ │ │ │ │ │ ├── CommandRequestMessageJsonEncoder.cs │ │ │ │ │ │ └── CommandResponseMessageJsonEncoder.cs │ │ │ │ ├── MongoDB.Driver.Core.csproj │ │ │ │ ├── ServerErrorCode.cs │ │ │ │ └── TransactionOptions.cs │ │ │ ├── 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 │ │ │ ├── MongoDB.Driver │ │ │ │ ├── ChangeStreamHelper.cs │ │ │ │ ├── ChangeStreamOptions.cs │ │ │ │ ├── ChangeStreamStageOptions.cs │ │ │ │ ├── ClientSessionHandle.cs │ │ │ │ ├── ClientSessionOptions.cs │ │ │ │ ├── CreateManyIndexesOptions.cs │ │ │ │ ├── CreateOneIndexOptions.cs │ │ │ │ ├── DecryptedSecureString.cs │ │ │ │ ├── DropIndexOptions.cs │ │ │ │ ├── EstimatedDocumentCountOptions.cs │ │ │ │ ├── IClientSession.cs │ │ │ │ ├── IMongoClientExtensions.cs │ │ │ │ ├── IMongoDatabaseExtensions.cs │ │ │ │ ├── IServerSession.cs │ │ │ │ ├── ListCollectionNamesOptions.cs │ │ │ │ ├── ListDatabasesOptions.cs │ │ │ │ ├── MongoDB.Driver.csproj │ │ │ │ ├── ReadPreferenceResolver.cs │ │ │ │ └── ServerSession.cs │ │ │ ├── MongoDB.Shared │ │ │ │ └── MaxTimeHelper.cs │ │ │ ├── MongoDB.ruleset │ │ │ └── MongoDBLegacy.ruleset │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── MongoDB.Driver.Core │ │ │ │ ├── BatchTransformingAsyncCursor.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 │ │ │ │ │ │ ├── ScramSha1Authenticator.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 │ │ │ │ │ ├── Bindings │ │ │ │ │ │ ├── ChannelChannelSource.cs │ │ │ │ │ │ ├── ChannelReadBinding.cs │ │ │ │ │ │ ├── ChannelReadWriteBinding.cs │ │ │ │ │ │ ├── ChannelSourceHandle.cs │ │ │ │ │ │ ├── ChannelSourceReadWriteBinding.cs │ │ │ │ │ │ ├── IBinding.cs │ │ │ │ │ │ ├── IChannel.cs │ │ │ │ │ │ ├── IChannelSource.cs │ │ │ │ │ │ ├── ReadBindingHandle.cs │ │ │ │ │ │ ├── ReadPreferenceBinding.cs │ │ │ │ │ │ ├── ReadWriteBindingHandle.cs │ │ │ │ │ │ ├── ServerChannelSource.cs │ │ │ │ │ │ ├── SingleServerReadBinding.cs │ │ │ │ │ │ ├── SingleServerReadWriteBinding.cs │ │ │ │ │ │ ├── SplitReadWriteBinding.cs │ │ │ │ │ │ └── WritableServerBinding.cs │ │ │ │ │ ├── Clusters │ │ │ │ │ │ ├── Cluster.cs │ │ │ │ │ │ ├── ClusterConnectionMode.cs │ │ │ │ │ │ ├── ClusterDescription.cs │ │ │ │ │ │ ├── ClusterDescriptionChangedEventArgs.cs │ │ │ │ │ │ ├── ClusterFactory.cs │ │ │ │ │ │ ├── ClusterId.cs │ │ │ │ │ │ ├── ClusterState.cs │ │ │ │ │ │ ├── ClusterType.cs │ │ │ │ │ │ ├── ElectionId.cs │ │ │ │ │ │ ├── ICluster.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── IsMasterResult.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 │ │ │ │ │ │ ├── EventAggregator.cs │ │ │ │ │ │ ├── EventContext.cs │ │ │ │ │ │ ├── IEventSubscriber.cs │ │ │ │ │ │ ├── ReflectionEventSubscriber.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 │ │ │ │ │ │ ├── IClock.cs │ │ │ │ │ │ ├── IRandomStringGenerator.cs │ │ │ │ │ │ ├── IdGenerator.cs │ │ │ │ │ │ ├── IndexMap.cs │ │ │ │ │ │ ├── InterlockedInt32.cs │ │ │ │ │ │ ├── Metronome.cs │ │ │ │ │ │ ├── Range.cs │ │ │ │ │ │ ├── ReadAheadEnumerable.cs │ │ │ │ │ │ ├── ReadConcernFeature.cs │ │ │ │ │ │ ├── ReferenceCounted.cs │ │ │ │ │ │ ├── SemanticVersion.cs │ │ │ │ │ │ ├── SemaphoreSlimRequest.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 │ │ │ │ │ │ ├── CommandOperationBase.cs │ │ │ │ │ │ ├── CountOperation.cs │ │ │ │ │ │ ├── CreateCollectionOperation.cs │ │ │ │ │ │ ├── CreateIndexRequest.cs │ │ │ │ │ │ ├── CreateIndexesOperation.cs │ │ │ │ │ │ ├── CreateIndexesUsingCommandOperation.cs │ │ │ │ │ │ ├── CreateIndexesUsingInsertOperation.cs │ │ │ │ │ │ ├── CreateViewOperation.cs │ │ │ │ │ │ ├── CursorBatchDeserializationHelper.cs │ │ │ │ │ │ ├── CursorType.cs │ │ │ │ │ │ ├── DatabaseExistsOperation.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── OperationExtensionMethods.cs │ │ │ │ │ │ ├── ParallelScanOperation.cs │ │ │ │ │ │ ├── PingOperation.cs │ │ │ │ │ │ ├── QueryHelper.cs │ │ │ │ │ │ ├── ReIndexOperation.cs │ │ │ │ │ │ ├── ReadCommandOperation.cs │ │ │ │ │ │ ├── RenameCollectionOperation.cs │ │ │ │ │ │ ├── ReturnDocument.cs │ │ │ │ │ │ ├── UpdateOpcodeOperation.cs │ │ │ │ │ │ ├── UpdateOpcodeOperationEmulator.cs │ │ │ │ │ │ ├── UpdateRequest.cs │ │ │ │ │ │ ├── UpdateType.cs │ │ │ │ │ │ ├── WriteCommandOperation.cs │ │ │ │ │ │ ├── WriteRequest.cs │ │ │ │ │ │ └── WriteRequestType.cs │ │ │ │ │ ├── Servers │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── CommandWireProtocol.cs │ │ │ │ │ │ ├── CursorBatch.cs │ │ │ │ │ │ ├── DeleteWireProtocol.cs │ │ │ │ │ │ ├── GetMoreWireProtocol.cs │ │ │ │ │ │ ├── IWireProtocol.cs │ │ │ │ │ │ ├── InsertWireProtocol.cs │ │ │ │ │ │ ├── KillCursorsWireProtocol.cs │ │ │ │ │ │ ├── Messages │ │ │ │ │ │ ├── DeleteMessage.cs │ │ │ │ │ │ ├── Encoders │ │ │ │ │ │ │ ├── BinaryEncoders │ │ │ │ │ │ │ │ ├── BinaryMessageEncoderFactory.cs │ │ │ │ │ │ │ │ ├── DeleteMessageBinaryEncoder.cs │ │ │ │ │ │ │ │ ├── GetMoreMessageBinaryEncoder.cs │ │ │ │ │ │ │ │ ├── InsertMessageBinaryEncoder.cs │ │ │ │ │ │ │ │ ├── KillCursorsMessageBinaryEncoder.cs │ │ │ │ │ │ │ │ ├── MessageBinaryEncoderBase.cs │ │ │ │ │ │ │ │ ├── Opcode.cs │ │ │ │ │ │ │ │ ├── QueryMessageBinaryEncoder.cs │ │ │ │ │ │ │ │ ├── ReplyMessageBinaryEncoder.cs │ │ │ │ │ │ │ │ └── UpdateMessageBinaryEncoder.cs │ │ │ │ │ │ │ ├── IEncodableMessage.cs │ │ │ │ │ │ │ ├── IMessageEncoder.cs │ │ │ │ │ │ │ ├── IMessageEncoderFactory.cs │ │ │ │ │ │ │ ├── IMessageEncoderSelector.cs │ │ │ │ │ │ │ ├── JsonEncoders │ │ │ │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── SingleBatchAsyncCursor.cs │ │ │ │ ├── Tag.cs │ │ │ │ ├── TagSet.cs │ │ │ │ ├── WriteConcern.cs │ │ │ │ └── WriteConcernResult.cs │ │ │ ├── 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 │ │ │ │ ├── ClusterKey.cs │ │ │ │ ├── ClusterRegistry.cs │ │ │ │ ├── Command.cs │ │ │ │ ├── ConnectionMode.cs │ │ │ │ ├── CountOptions.cs │ │ │ │ ├── CreateCollectionOptions.cs │ │ │ │ ├── CreateIndexModel.cs │ │ │ │ ├── CreateIndexOptions.cs │ │ │ │ ├── CreateViewOptions.cs │ │ │ │ ├── CursorType.cs │ │ │ │ ├── DeleteManyModel.cs │ │ │ │ ├── DeleteOneModel.cs │ │ │ │ ├── DeleteOptions.cs │ │ │ │ ├── DeleteResult.cs │ │ │ │ ├── DistinctOptions.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 │ │ │ │ ├── IFilteredMongoCollection.cs │ │ │ │ ├── IFindFluent.cs │ │ │ │ ├── IFindFluentExtensions.cs │ │ │ │ ├── IInheritableMongoClientSettings.cs │ │ │ │ ├── IMongoClient.cs │ │ │ │ ├── IMongoCollection.cs │ │ │ │ ├── IMongoCollectionExtensions.cs │ │ │ │ ├── IMongoDatabase.cs │ │ │ │ ├── IMongoIndexManager.cs │ │ │ │ ├── IOperationExecutor.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 │ │ │ │ ├── ListCollectionsOptions.cs │ │ │ │ ├── MapReduceOptions.cs │ │ │ │ ├── MongoBulkWriteException.cs │ │ │ │ ├── MongoClient.cs │ │ │ │ ├── MongoClientBase.cs │ │ │ │ ├── MongoClientSettings.cs │ │ │ │ ├── MongoCollectionBase.cs │ │ │ │ ├── MongoCollectionImpl.cs │ │ │ │ ├── MongoCollectionSettings.cs │ │ │ │ ├── MongoCredential.cs │ │ │ │ ├── MongoCredentialStore.cs │ │ │ │ ├── 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 │ │ │ │ ├── RenameCollectionOptions.cs │ │ │ │ ├── ReplaceOneModel.cs │ │ │ │ ├── ReplaceOneResult.cs │ │ │ │ ├── ReturnDocument.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 │ │ │ └── MongoDB.Shared │ │ │ │ ├── ApplicationNameHelper.cs │ │ │ │ ├── CanonicalDisposableClass.cs │ │ │ │ ├── CanonicalDisposableDerivedClass.cs │ │ │ │ ├── CanonicalDisposableStruct.cs │ │ │ │ ├── CanonicalEquatableClass.cs │ │ │ │ ├── CanonicalEquatableDerivedClass.cs │ │ │ │ ├── CanonicalEquatableStruct.cs │ │ │ │ ├── Hasher.cs │ │ │ │ └── IncrementalMD5.cs │ │ └── Pathfinding.Ionic.Zip.Reduced.dll │ └── UpgradeLog.htm └── global.json └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/.gitignore -------------------------------------------------------------------------------- /ETClient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/.gitignore -------------------------------------------------------------------------------- /ETClient/FileServer/FileServer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/FileServer/FileServer.pdb -------------------------------------------------------------------------------- /ETClient/Message/HotfixMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Message/HotfixMessage.cs -------------------------------------------------------------------------------- /ETClient/Message/HotfixOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Message/HotfixOpcode.cs -------------------------------------------------------------------------------- /ETClient/Message/InnerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Message/InnerMessage.cs -------------------------------------------------------------------------------- /ETClient/Message/InnerOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Message/InnerOpcode.cs -------------------------------------------------------------------------------- /ETClient/Message/OuterMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Message/OuterMessage.cs -------------------------------------------------------------------------------- /ETClient/Message/OuterOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Message/OuterOpcode.cs -------------------------------------------------------------------------------- /ETClient/Proto/HotfixMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/HotfixMessage.proto -------------------------------------------------------------------------------- /ETClient/Proto/InnerMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/InnerMessage.proto -------------------------------------------------------------------------------- /ETClient/Proto/OuterMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/OuterMessage.proto -------------------------------------------------------------------------------- /ETClient/Proto/Proto2CS.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/Proto2CS.1.0.0.nupkg -------------------------------------------------------------------------------- /ETClient/Proto/Proto2CS.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/Proto2CS.deps.json -------------------------------------------------------------------------------- /ETClient/Proto/Proto2CS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/Proto2CS.dll -------------------------------------------------------------------------------- /ETClient/Proto/Proto2CS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/Proto2CS.pdb -------------------------------------------------------------------------------- /ETClient/Proto/Proto2CS.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/Proto2CS.runtimeconfig.dev.json -------------------------------------------------------------------------------- /ETClient/Proto/Proto2CS.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/Proto2CS.runtimeconfig.json -------------------------------------------------------------------------------- /ETClient/Proto/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Proto/protoc.exe -------------------------------------------------------------------------------- /ETClient/Proto/编译Protoc.bat: -------------------------------------------------------------------------------- 1 | dotnet Proto2CS.dll -------------------------------------------------------------------------------- /ETClient/Tools/Proto2CS/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Tools/Proto2CS/.vscode/launch.json -------------------------------------------------------------------------------- /ETClient/Tools/Proto2CS/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Tools/Proto2CS/.vscode/tasks.json -------------------------------------------------------------------------------- /ETClient/Tools/Proto2CS/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Tools/Proto2CS/ProcessHelper.cs -------------------------------------------------------------------------------- /ETClient/Tools/Proto2CS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Tools/Proto2CS/Program.cs -------------------------------------------------------------------------------- /ETClient/Tools/Proto2CS/Proto2CS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Tools/Proto2CS/Proto2CS.csproj -------------------------------------------------------------------------------- /ETClient/Tools/Proto2CS/Proto2CS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Tools/Proto2CS/Proto2CS.sln -------------------------------------------------------------------------------- /ETClient/Tools/Proto2CS/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Tools/Proto2CS/global.json -------------------------------------------------------------------------------- /ETClient/Unity/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/.vscode/settings.json -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Bundles/Config/BuffConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Bundles/Config/BuffConfig.txt -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Bundles/Config/Config.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Bundles/Config/Config.prefab -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Bundles/Config/GlobalProto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Bundles/Config/GlobalProto.txt -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Bundles/Config/StartProcessConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Bundles/Config/StartProcessConfig.txt -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Bundles/Config/StartSceneConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Bundles/Config/StartSceneConfig.txt -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Bundles/Config/StartZoneConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Bundles/Config/StartZoneConfig.txt -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Bundles/Config/UnitConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Bundles/Config/UnitConfig.txt -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/ETTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/ETTask.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/ETTaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/ETTaskFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/ETVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/ETVoid.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/IAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/IAwaiter.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/MoveNextRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Async/MoveNextRunner.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/DoubleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/DoubleMap.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/Env.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/EnvKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/EnvKey.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/EventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/EventAttribute.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/EventIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/EventIdType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Event/IEvent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/ByteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/ByteHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/DllHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/DllHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/Dumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/Dumper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/EnumHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/FileHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/IdGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/IdGenerater.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/JsonHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/MD5Helper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/MethodInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/MethodInfoHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/MongoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/MongoHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/NetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/NetHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/ObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/ObjectHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/RandomHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/StringHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/TimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Helper/TimeHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Log.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/LogType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Logger/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Logger/ILog.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Logger/NLogAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Logger/NLogAdapter.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/MultiMap.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/BaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/BaseAttribute.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/Component.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ComponentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ComponentFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ComponentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ComponentView.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ComponentWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ComponentWithId.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/Entity.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/EventProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/EventProxy.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/EventSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/HideInHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/HideInHierarchy.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IAwakeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IAwakeSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IChangeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IChangeSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IDeserializeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IDeserializeSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IDestroySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IDestroySystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IFixedUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IFixedUpdateSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ILateUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ILateUpdateSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ILoadSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ILoadSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ISerializeToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ISerializeToEntity.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IStartSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IStartSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/IUpdateSystem.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/Object.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/Object/ObjectPool.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/ProcessHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/QueueDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/QueueDictionary.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/TryLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/TryLocker.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnOrderMultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnOrderMultiMap.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Bounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Bounds.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Mathf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Mathf.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Matrix3x3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Matrix3x3.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Matrix4x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Matrix4x4.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Quaternion.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Time.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Vector2.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Vector3.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Base/UnityEngine/Vector4.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/AppManagerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/AppManagerComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/ClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/ClientConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/DBConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/DBConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/EquipConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/EquipConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/HttpConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/HttpConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/InnerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/InnerConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/ItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/ItemConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/MapConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/MapConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/OuterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/OuterConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/SkillConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/SkillConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/StartConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/StartConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/UnitConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/Config/UnitConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/ConsoleComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/ConsoleComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/KVComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/KVComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/OpcodeTypeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/OpcodeTypeComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/OptionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/OptionComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/PlayerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/PlayerComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/ReplComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/ReplComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/SessionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/SessionComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/SessionUserComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/SessionUserComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/StartConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/StartConfigComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/TimerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/TimerComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/UnitComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/UnitComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Component/UserComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Component/UserComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Core.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Entity/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Entity/Game.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Entity/Hotfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Entity/Hotfix.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Entity/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Entity/Player.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Entity/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Entity/Scene.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Entity/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Entity/Unit.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Entity/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Entity/User.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/AMActorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/AMActorHandler.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/AMActorRpcHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/AMActorRpcHandler.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/ActorMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/ActorMessageSender.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/ActorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/ActorResponse.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/ActorTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/ActorTask.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/IActorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/IActorMessage.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/IMActorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/IMActorHandler.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/IMailboxHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/IMailboxHandler.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/MailBoxComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/MailBoxComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/MailboxType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Actor/MailboxType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/ActorLocation/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/ActorLocation/Location.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ACategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ACategory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/AConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/AConfigComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ConfigAttribute.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ConfigComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/ConfigHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Config/IConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/AMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/AMHandler.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/AMRpcHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/AMRpcHandler.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/ErrorCode.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/HotfixMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/HotfixMessage.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/HotfixOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/HotfixOpcode.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/IMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/IMHandler.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/IMessage.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/IMessagePacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/IMessagePacker.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/InnerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/InnerMessage.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/InnerOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/InnerOpcode.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessageAttribute.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessageInfo.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessagePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessagePool.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessageProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MessageProxy.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MongoPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/MongoPacker.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Network/AChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Network/AChannel.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Network/AService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Network/AService.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Network/KCP/Kcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Network/KCP/Kcp.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/NetworkComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/NetworkComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Opcode.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/OpcodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/OpcodeHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/OuterMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/OuterMessage.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/OuterOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/OuterOpcode.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/ProtobufHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/ProtobufHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/ProtobufPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/ProtobufPacker.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/RpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/RpcException.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Message/Session.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Numeric/INumericWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Numeric/INumericWatcher.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Numeric/NumericComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Numeric/NumericComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Module/Numeric/NumericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Module/Numeric/NumericType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/AppType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/AppType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/Define.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/Define.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/GizmosDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/GizmosDebug.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/IInstanceMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/IInstanceMethod.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/LayerNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/LayerNames.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/MonoStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/MonoStaticMethod.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/MotionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/MotionType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Other/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Other/Options.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/ETCore/Unity.ETCore.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/ETCore/Unity.ETCore.asmdef -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildAssetBundles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildAssetBundles.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildEditor.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildHotfixEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/BuildEditor/BuildHotfixEditor.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/Helper/EditorResHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/Helper/EditorResHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/Proto2CsEditor/InnerProto2CS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/Proto2CsEditor/InnerProto2CS.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/Proto2CsEditor/Proto2CSEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/Proto2CsEditor/Proto2CSEditor.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Editor/Unity.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Editor/Unity.Editor.asmdef -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Component/GlobalConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Component/GlobalConfigComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Component/GlobalProto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Component/GlobalProto.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Component/ReferenceCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Component/ReferenceCollector.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Component/ResourcesComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Component/ResourcesComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Component/SceneChangeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Component/SceneChangeComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Helper/ActionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Helper/ActionHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Helper/BundleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Helper/BundleHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Helper/ClientConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Helper/ClientConfigHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Helper/GameObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Helper/GameObjectHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Helper/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Helper/PathHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Helper/PositionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Helper/PositionHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Helper/ResourcesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Helper/ResourcesHelper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Model.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/Filter/FilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/Filter/FilterAttribute.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/Filter/FilterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/Filter/FilterComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/Filter/FilterEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/Filter/FilterEntity.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/Filter/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/Filter/IFilter.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/CanvasConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/CanvasConfig.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/IUIFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/IUIFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/UI.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/UIComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/UIComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/UIType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Module/UIComponent/UIType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Other/GizmosDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Other/GizmosDebug.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Model/Unity.Model.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Model/Unity.Model.asmdef -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ETFramework/Resources/KV.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ETFramework/Resources/KV.prefab -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Materials/env_DarkTile.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Materials/env_DarkTile.mat -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Resources/Shader/Plane.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Resources/Shader/Plane.mat -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Factory/PlayerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Factory/PlayerFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Factory/UIResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Factory/UIResources.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Factory/UnitFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Factory/UnitFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Factory/UnitResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Factory/UnitResources.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Init.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Other/DemoEventIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Other/DemoEventIdType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Other/UIType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Other/UIType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/UI/UILoading/UILoadingComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/UI/UILoading/UILoadingComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/UI/UILoading/UILoadingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/UI/UILoading/UILoadingFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/UI/UILogin/UILoginComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/UI/UILogin/UILoginComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/UI/UILogin/UILoginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/UI/UILogin/UILoginFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/UI/UIRegister/UIRegisterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/UI/UIRegister/UIRegisterComponent.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/UI/UIRegister/UIRegisterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/UI/UIRegister/UIRegisterFactory.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Script/Unity.Demo.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Script/Unity.Demo.asmdef -------------------------------------------------------------------------------- /ETClient/Unity/Assets/GameDemo/Textures/env_DarkTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/GameDemo/Textures/env_DarkTile.png -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android/libs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android/libs/armeabi-v7a.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android/libs/armeabi-v7a/libkcp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android/libs/armeabi-v7a/libkcp.so -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android/libs/armeabi-v7a/libkcp.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android/libs/armeabi-v7a/libkcp.so.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android/libs/x86.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android/libs/x86/libkcp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android/libs/x86/libkcp.so -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Android/libs/x86/libkcp.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Android/libs/x86/libkcp.so.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/AstarPathfindingProject.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/AstarPathfindingProject.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/AstarPathfindingProject/Clipper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/AstarPathfindingProject/Clipper.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/AstarPathfindingProject/DotNetZip.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/AstarPathfindingProject/DotNetZip.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/AstarPathfindingProject/DotNetZip/DotNetZipLicense.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59ba0bf2b49f14a96917a04cee5df27e 3 | -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/AstarPathfindingProject/Poly2Tri.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/AstarPathfindingProject/Poly2Tri.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/AstarPathfindingProject/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/AstarPathfindingProject/dependencies.txt -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/AstarPathfindingProject/dependencies.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfd9baf6289e54259afb1420c5bee619 3 | -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OOXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OOXML.dll -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OOXML.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OOXML.dll.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXml4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXml4Net.dll -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXml4Net.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXml4Net.dll.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXmlFormats.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXmlFormats.dll -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXmlFormats.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.OpenXmlFormats.dll.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.dll -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/Editor/npoi/NPOI.dll.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/ICSharpCode.SharpZipLib.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/ICSharpCode.SharpZipLib.dll.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/MacOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/MacOS.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents/MacOS.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents/MacOS/kcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents/MacOS/kcp -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents/MacOS/kcp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/MacOS/kcp.bundle/Contents/MacOS/kcp.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/iOS.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/iOS/kcp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/iOS/kcp.a -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/iOS/kcp.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/iOS/kcp.a.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/x86.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/x86.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/x86/kcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/x86/kcp.dll -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/x86/kcp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/x86/kcp.dll.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/x86_64.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/x86_64/kcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/x86_64/kcp.dll -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Plugins/x86_64/kcp.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Plugins/x86_64/kcp.dll.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Scenes.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Scenes/Init.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Scenes/Init.unity -------------------------------------------------------------------------------- /ETClient/Unity/Assets/Scenes/Init.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/Scenes/Init.unity.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteArray.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteArray.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteString.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ByteString.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedInputStream.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/CodedOutputStream.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/FieldCodec.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/IMessage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/IMessage.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/LimitedInputStream.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageExtensions.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageParser.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageParser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/MessageParser.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/ProtoPreconditions.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/RepeatedField.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/StreamExtensions.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/WireFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/WireFormat.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Google.Protobuf/WireFormat.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Google.Protobuf/WireFormat.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/IJsonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/IJsonWrapper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/JsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/JsonData.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/JsonException.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/JsonMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/JsonMapper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/JsonMockWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/JsonMockWrapper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/JsonReader.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/JsonWriter.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/Lexer.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/LitJson/ParserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/LitJson/ParserToken.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonConstants.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonConstants.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonDefaults.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonDefaults.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonDefaults.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonUtils.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/BsonUtils.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/Exceptions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/Exceptions.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonChunkPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonChunkPool.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonReader.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonReader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonReader.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonReaderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonReaderState.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonStream.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonTrie.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/BsonWriter.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/ContextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/ContextType.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IBsonChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IBsonChunk.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IBsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IBsonReader.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IBsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IBsonWriter.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/IByteBuffer.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/INameDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/INameDecoder.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonBuffer.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonConvert.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonReader.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonScanner.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonToken.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/JsonWriter.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/Utf8Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/IO/Utf8Helper.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/ObjectModel.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/ObjectModel.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/PowerOf2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/PowerOf2.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/PowerOf2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/PowerOf2.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/Serialization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Bson/Serialization.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Shared.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Shared.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Shared/Hasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Shared/Hasher.cs -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Shared/Hasher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/MongoDB/MongoDB.Shared/Hasher.cs.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Unity.ThirdParty.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Unity.ThirdParty.asmdef -------------------------------------------------------------------------------- /ETClient/Unity/Assets/ThirdParty/Unity.ThirdParty.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/ThirdParty/Unity.ThirdParty.asmdef.meta -------------------------------------------------------------------------------- /ETClient/Unity/Assets/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/link.xml -------------------------------------------------------------------------------- /ETClient/Unity/Assets/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Assets/link.xml.meta -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.6f1 2 | -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ETClient/Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ETClient/Unity/Unity.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Unity.Demo.csproj -------------------------------------------------------------------------------- /ETClient/Unity/Unity.ETCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Unity.ETCore.csproj -------------------------------------------------------------------------------- /ETClient/Unity/Unity.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Unity.Editor.csproj -------------------------------------------------------------------------------- /ETClient/Unity/Unity.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Unity.Model.csproj -------------------------------------------------------------------------------- /ETClient/Unity/Unity.ThirdParty.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Unity.ThirdParty.csproj -------------------------------------------------------------------------------- /ETClient/Unity/Unity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/Unity.sln -------------------------------------------------------------------------------- /ETClient/Unity/env_Dark.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETClient/Unity/env_Dark.unitypackage -------------------------------------------------------------------------------- /ETServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/.gitignore -------------------------------------------------------------------------------- /ETServer/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/.vscode/launch.json -------------------------------------------------------------------------------- /ETServer/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/.vscode/tasks.json -------------------------------------------------------------------------------- /ETServer/Config/BuffConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/BuffConfig.txt -------------------------------------------------------------------------------- /ETServer/Config/MapConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/MapConfig.txt -------------------------------------------------------------------------------- /ETServer/Config/SkillConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/SkillConfig.txt -------------------------------------------------------------------------------- /ETServer/Config/StartConfig/127.0.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/StartConfig/127.0.0.1.txt -------------------------------------------------------------------------------- /ETServer/Config/StartConfig/Benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/StartConfig/Benchmark.txt -------------------------------------------------------------------------------- /ETServer/Config/StartConfig/BenchmarkWebsocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/StartConfig/BenchmarkWebsocket.txt -------------------------------------------------------------------------------- /ETServer/Config/StartConfig/LocalAllServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/StartConfig/LocalAllServer.txt -------------------------------------------------------------------------------- /ETServer/Config/StartConfig/LocalAllServerWebsocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/StartConfig/LocalAllServerWebsocket.txt -------------------------------------------------------------------------------- /ETServer/Config/UnitConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/UnitConfig.txt -------------------------------------------------------------------------------- /ETServer/Config/graph.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Config/graph.bytes -------------------------------------------------------------------------------- /ETServer/Proto/HotfixMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Proto/HotfixMessage.proto -------------------------------------------------------------------------------- /ETServer/Proto/InnerMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Proto/InnerMessage.proto -------------------------------------------------------------------------------- /ETServer/Proto/OuterMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Proto/OuterMessage.proto -------------------------------------------------------------------------------- /ETServer/Server/.vs/Server/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/.vs/Server/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ETServer/Server/.vs/Server/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/.vs/Server/v16/.suo -------------------------------------------------------------------------------- /ETServer/Server/App/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/App/App.config -------------------------------------------------------------------------------- /ETServer/Server/App/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/App/NLog.config -------------------------------------------------------------------------------- /ETServer/Server/App/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/App/NLog.xsd -------------------------------------------------------------------------------- /ETServer/Server/App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/App/Program.cs -------------------------------------------------------------------------------- /ETServer/Server/App/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/App/Properties/launchSettings.json -------------------------------------------------------------------------------- /ETServer/Server/App/Server.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/App/Server.App.csproj -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/AsyncETTaskMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/AsyncETTaskMethodBuilder.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/AsyncETVoidMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/AsyncETVoidMethodBuilder.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/AsyncMethodBuilderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/AsyncMethodBuilderAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/ETCancellationTokenSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/ETCancellationTokenSource.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/ETTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/ETTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/ETTaskCompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/ETTaskCompletionSource.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/ETTaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/ETTaskFactory.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/ETVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/ETVoid.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/IAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/IAwaiter.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Async/MoveNextRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Async/MoveNextRunner.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/DoubleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/DoubleMap.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Event/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Event/Env.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Event/EnvKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Event/EnvKey.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Event/EventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Event/EventAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Event/EventIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Event/EventIdType.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Event/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Event/IEvent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/ByteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/ByteHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/DllHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/DllHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/Dumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/Dumper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/EnumHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/FileHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/IdGenerater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/IdGenerater.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/JsonHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/MD5Helper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/MethodInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/MethodInfoHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/MongoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/MongoHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/NetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/NetHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/ObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/ObjectHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/RandomHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/RandomHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/StringHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Helper/TimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Helper/TimeHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Log.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/LogType.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Logger/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Logger/ILog.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Logger/NLogAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Logger/NLogAdapter.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/MultiMap.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/BaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/BaseAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/Component.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ComponentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ComponentFactory.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ComponentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ComponentView.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ComponentWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ComponentWithId.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/Entity.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/EntityEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/EntityEventAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/EventProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/EventProxy.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/EventSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/EventSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/HideInHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/HideInHierarchy.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/IAwakeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/IAwakeSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/IChangeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/IChangeSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/IDeserializeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/IDeserializeSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/IDestroySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/IDestroySystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/IFixedUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/IFixedUpdateSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ILateUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ILateUpdateSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ILoadSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ILoadSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ISerializeToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ISerializeToEntity.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/IStartSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/IStartSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/IUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/IUpdateSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/Object.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ObjectPool.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/Object/ObjectSystemAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/Object/ObjectSystemAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/OneThreadSynchronizationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/OneThreadSynchronizationContext.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/ProcessHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/QueueDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/QueueDictionary.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/RecyclableMemoryStream/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/RecyclableMemoryStream/Events.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/TryLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/TryLocker.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnOrderMultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnOrderMultiMap.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Bounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Bounds.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Mathf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Mathf.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Matrix3x3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Matrix3x3.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Matrix4x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Matrix4x4.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Quaternion.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Time.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Vector2.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Vector3.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Base/UnityEngine/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Base/UnityEngine/Vector4.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/AppManagerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/AppManagerComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/ClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/ClientConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/DBConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/DBConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/EquipConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/EquipConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/HttpConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/HttpConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/InnerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/InnerConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/ItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/ItemConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/MapConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/MapConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/OuterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/OuterConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/SkillConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/SkillConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/StartConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/StartConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/Config/UnitConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/Config/UnitConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/ConsoleComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/ConsoleComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/KVComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/KVComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/OpcodeTypeComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/OpcodeTypeComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/OptionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/OptionComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/PlayerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/PlayerComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/RealmGateAddressComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/RealmGateAddressComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/ReplComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/ReplComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/SessionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/SessionComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/SessionUserComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/SessionUserComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/StartConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/StartConfigComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/TimerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/TimerComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/UnitComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/UnitComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Component/UserComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Component/UserComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Core.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Entity/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Entity/Game.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Entity/Hotfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Entity/Hotfix.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Entity/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Entity/Player.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Entity/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Entity/Scene.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Entity/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Entity/Unit.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Entity/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Entity/User.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/AMActorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/AMActorHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/AMActorRpcHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/AMActorRpcHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/ActorMessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/ActorMessageAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/ActorMessageDispatcherComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/ActorMessageDispatcherComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/ActorMessageHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/ActorMessageHandlerAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/ActorMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/ActorMessageSender.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/ActorMessageSenderComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/ActorMessageSenderComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/ActorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/ActorResponse.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/ActorTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/ActorTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/IActorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/IActorMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/IMActorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/IMActorHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/IMailboxHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/IMailboxHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/MailBoxComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/MailBoxComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/MailboxDispatcherComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/MailboxDispatcherComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/MailboxHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/MailboxHandlerAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Actor/MailboxType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Actor/MailboxType.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/ActorLocation/AMActorLocationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/ActorLocation/AMActorLocationHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/ActorLocation/ActorLocationSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/ActorLocation/ActorLocationSender.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/ActorLocation/IActorLocationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/ActorLocation/IActorLocationMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/ActorLocation/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/ActorLocation/Location.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/ActorLocation/LocationComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/ActorLocation/LocationComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/ActorLocation/LocationProxyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/ActorLocation/LocationProxyComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Config/ACategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Config/ACategory.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Config/AConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Config/AConfigComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Config/ConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Config/ConfigAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Config/ConfigComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Config/ConfigComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Config/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Config/ConfigHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Config/IConfig.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBCacheComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBCacheComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBProxyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBProxyComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBQuery2JsonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBQuery2JsonTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBQueryBatchTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBQueryBatchTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBQueryJsonTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBQueryJsonTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBQueryTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBQueryTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBSaveBatchTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBSaveBatchTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBSaveTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBSaveTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBTask.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/DB/DBTaskQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/DB/DBTaskQueue.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/AMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/AMHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/AMRpcHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/AMRpcHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/ErrorCode.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/HotfixMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/HotfixMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/HotfixOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/HotfixOpcode.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/IMHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/IMHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/IMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/IMessageDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/IMessageDispatcher.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/IMessagePacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/IMessagePacker.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/InnerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/InnerMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/InnerOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/InnerOpcode.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/MessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/MessageAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/MessageDispatcherComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/MessageDispatcherComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/MessageHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/MessageHandlerAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/MessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/MessageInfo.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/MessagePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/MessagePool.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/MessageProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/MessageProxy.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/MongoPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/MongoPacker.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/NetInnerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/NetInnerComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/NetOuterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/NetOuterComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/AChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/AChannel.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/AService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/AService.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/Circularbuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/Circularbuffer.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/KCP/KChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/KCP/KChannel.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/KCP/KService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/KCP/KService.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/KCP/Kcp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/KCP/Kcp.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/NetworkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/NetworkHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/TCP/PacketParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/TCP/PacketParser.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/TCP/TChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/TCP/TChannel.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/TCP/TService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/TCP/TService.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/WebSocket/WChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/WebSocket/WChannel.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Network/WebSocket/WService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Network/WebSocket/WService.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/NetworkComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/NetworkComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Opcode.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/OpcodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/OpcodeHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/OuterMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/OuterMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/OuterOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/OuterOpcode.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/ProtobufHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/ProtobufHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/ProtobufPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/ProtobufPacker.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/RpcException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/RpcException.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Message/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Message/Session.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Numeric/INumericWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Numeric/INumericWatcher.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Numeric/NumericComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Numeric/NumericComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Numeric/NumericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Numeric/NumericType.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Numeric/NumericWatcherAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Numeric/NumericWatcherAttribute.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Numeric/NumericWatcherComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Numeric/NumericWatcherComponent.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Module/Numeric/NumericWatcher_Hp_ShowUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Module/Numeric/NumericWatcher_Hp_ShowUI.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/AppType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/AppType.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/Define.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/Define.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/GizmosDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/GizmosDebug.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/IInstanceMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/IInstanceMethod.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/LayerNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/LayerNames.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/MonoStaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/MonoStaticMethod.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/MotionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/MotionType.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Other/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Other/Options.cs -------------------------------------------------------------------------------- /ETServer/Server/ET.Core/Server.ET.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ET.Core/Server.ET.Core.csproj -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/Actor_TransferHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/Actor_TransferHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/C2G_PlayerInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/C2G_PlayerInfoHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/C2M_ReloadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/C2M_ReloadHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/C2M_TestActorRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/C2M_TestActorRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/C2M_TestRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/C2M_TestRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/C2R_PingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/C2R_PingHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/G2C_TestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/G2C_TestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/M2A_ReloadHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/M2A_ReloadHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Handler/M2M_TrasferUnitRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Handler/M2M_TrasferUnitRequest.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Actor/ActorMessageSenderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Actor/ActorMessageSenderHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Actor/MailBoxComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Actor/MailBoxComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Actor/MailboxDispatcherComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Actor/MailboxDispatcherComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Actor/MailboxGateSessionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Actor/MailboxGateSessionHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Actor/MailboxMessageDispatcherHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Actor/MailboxMessageDispatcherHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/ActorLocation/ActorLocationSenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/ActorLocation/ActorLocationSenderSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/ActorLocation/ObjectAddRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/ActorLocation/ObjectAddRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/ActorLocation/ObjectGetRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/ActorLocation/ObjectGetRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/ActorLocation/ObjectLockRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/ActorLocation/ObjectLockRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/DB/DBProxyComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/DB/DBProxyComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/DB/DBQuery2JsonRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/DB/DBQuery2JsonRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/DB/DBQueryBatchRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/DB/DBQueryBatchRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/DB/DBQueryJsonRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/DB/DBQueryJsonRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/DB/DBQueryRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/DB/DBQueryRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/DB/DBSaveBatchRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/DB/DBSaveBatchRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/DB/DBSaveRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/DB/DBSaveRequestHandler.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Message/InnerMessageDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Message/InnerMessageDispatcher.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Message/MessageDispatherComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Message/MessageDispatherComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Message/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Message/MessageHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Message/MessagePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Message/MessagePool.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Message/NetInnerComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Message/NetInnerComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Message/NetOuterComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Message/NetOuterComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Module/Message/OuterMessageDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Module/Message/OuterMessageDispatcher.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/Server.Hotfix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/Server.Hotfix.csproj -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/System/ConfigComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/System/ConfigComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/System/RealmGateAddressComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/System/RealmGateAddressComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Hotfix/System/SessionUserComponentSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Hotfix/System/SessionUserComponentSystem.cs -------------------------------------------------------------------------------- /ETServer/Server/Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/Server.sln -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/ByteArray.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/ByteString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/ByteString.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/CodedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/CodedInputStream.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/CodedOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/CodedOutputStream.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/FieldCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/FieldCodec.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/Google.Protobuf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/Google.Protobuf.csproj -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/ICustomDiagnosticMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/ICustomDiagnosticMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/IMessage.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/LimitedInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/LimitedInputStream.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/MessageExtensions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/MessageParser.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/PropertyInfoExtensions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/ProtoPreconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/ProtoPreconditions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/RepeatedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/RepeatedField.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/StreamExtensions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Google.Protobuf/WireFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Google.Protobuf/WireFormat.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/KcpLib/KcpLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/KcpLib/KcpLib.csproj -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/KcpLib/kcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/KcpLib/kcp.dll -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/KcpLib/libkcp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/KcpLib/libkcp.dylib -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/KcpLib/libkcp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/KcpLib/libkcp.so -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongoDBDriver/MongoDB.Driver/ServerSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongoDBDriver/MongoDB.Driver/ServerSession.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongoDBDriver/MongoDB.Shared/MaxTimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongoDBDriver/MongoDB.Shared/MaxTimeHelper.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongoDBDriver/MongoDB.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongoDBDriver/MongoDB.ruleset -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongoDBDriver/MongoDBLegacy.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongoDBDriver/MongoDBLegacy.ruleset -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/BsonConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/BsonConstants.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/BsonDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/BsonDefaults.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/BsonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/BsonUtils.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonReader.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonStream.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonTrie.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/BsonWriter.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/ContextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/ContextType.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IBsonChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IBsonChunk.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IBsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IBsonReader.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IBsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IBsonWriter.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/IByteBuffer.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/INameDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/INameDecoder.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonBuffer.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonConvert.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonReader.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonScanner.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonToken.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/JsonWriter.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/Utf8Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/IO/Utf8Helper.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/PowerOf2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Bson/PowerOf2.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver.Core/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver.Core/Optional.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver.Core/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver.Core/Tag.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver.Core/TagSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver.Core/TagSet.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/Builders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/Builders.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/ClusterKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/ClusterKey.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/Command.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/CountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/CountOptions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/CursorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/CursorType.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/DeleteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/DeleteOptions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/DeleteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/DeleteResult.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/FindFluent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/FindFluent.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/FindOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/FindOptions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/IFindFluent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/IFindFluent.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/IMongoClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/IMongoClient.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoClient.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoDBRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoDBRef.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoDefaults.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoIdentity.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoUrl.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/MongoUtils.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/Setting.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/SslSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/SslSettings.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/UpdateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/UpdateOptions.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/UpdateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/UpdateResult.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/WriteError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/WriteError.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/WriteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Driver/WriteModel.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Shared/Hasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/MongodbDriver/MongoDB.Shared/Hasher.cs -------------------------------------------------------------------------------- /ETServer/Server/ThirdParty/Pathfinding.Ionic.Zip.Reduced.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/ThirdParty/Pathfinding.Ionic.Zip.Reduced.dll -------------------------------------------------------------------------------- /ETServer/Server/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/Server/UpgradeLog.htm -------------------------------------------------------------------------------- /ETServer/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/ETServer/global.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roubincode/ETCore/HEAD/README.md --------------------------------------------------------------------------------