From fefc741c79db952b2dedc3d11f33d1c5c988693c Mon Sep 17 00:00:00 2001 From: Dvurechensky <46356631+Dvurechensky@users.noreply.github.com> Date: Mon, 12 May 2025 08:13:30 +0300 Subject: [PATCH] 1.0.1 FIX MANY PROBLEMS --- .gitignore | 75 +++++++++++++++++++ .../UniRx/Examples/Sample01_ObservableWWW.cs | 10 ++- .../Examples/Sample02_ObservableTriggers.cs | 10 ++- .../Sample03_GameObjectAsObservable.cs | 10 ++- .../Sample04_ConvertFromUnityCallback.cs | 10 ++- .../Examples/Sample05_ConvertFromCoroutine.cs | 10 ++- .../Examples/Sample06_ConvertToCoroutine.cs | 10 ++- .../Sample07_OrchestratIEnumerator.cs | 10 ++- .../Examples/Sample08_DetectDoubleClick.cs | 10 ++- .../UniRx/Examples/Sample09_EventHandling.cs | 10 ++- .../Examples/Sample10_MainThreadDispatcher.cs | 10 ++- .../Plugins/UniRx/Examples/Sample11_Logger.cs | 10 ++- .../Examples/Sample12_ReactiveProperty.cs | 10 ++- .../UniRx/Examples/Sample13_ToDoApp.cs | 10 ++- .../Asynchronous/WebRequestExtensions.cs | 10 ++- .../Scripts/Disposables/BooleanDisposable.cs | 10 ++- .../Disposables/CancellationDisposable.cs | 10 ++- .../Disposables/CompositeDisposable.cs | 10 ++- .../Disposables/DictionaryDisposable.cs | 10 ++- .../UniRx/Scripts/Disposables/Disposable.cs | 10 ++- .../Disposables/DisposableExtensions.cs | 10 ++- .../UniRx/Scripts/Disposables/ICancelable.cs | 10 ++- .../MultipleAssignmentDisposable.cs | 10 ++- .../Scripts/Disposables/RefCountDisposable.cs | 10 ++- .../Disposables/ScheduledDisposable.cs | 10 ++- .../Scripts/Disposables/SerialDisposable.cs | 10 ++- .../Disposables/SingleAssignmentDisposable.cs | 10 ++- .../Disposables/StableCompositeDisposable.cs | 10 ++- .../Plugins/UniRx/Scripts/EventPattern.cs | 10 ++- .../UniRx/Scripts/InternalUtil/AscynLock.cs | 10 ++- .../CancellableTaskCompletionSource.cs | 10 ++- .../InternalUtil/ExceptionExtensions.cs | 10 ++- .../Scripts/InternalUtil/ImmutableList.cs | 10 ++- .../Scripts/InternalUtil/ListObserver.cs | 10 ++- .../Scripts/InternalUtil/MicroCoroutine.cs | 10 ++- .../Scripts/InternalUtil/PriorityQueue.cs | 10 ++- .../Scripts/InternalUtil/PromiseHelper.cs | 10 ++- .../Scripts/InternalUtil/ScheduledItem.cs | 10 ++- .../InternalUtil/ThreadSafeQueueWorker.cs | 10 ++- .../InternalUtil/UnityEqualityComparer.cs | 10 ++- .../Plugins/UniRx/Scripts/Notification.cs | 10 ++- .../Scripts/Notifiers/BooleanNotifier.cs | 10 ++- .../UniRx/Scripts/Notifiers/CountNotifier.cs | 10 ++- .../UniRx/Scripts/Notifiers/MessageBroker.cs | 10 ++- .../Scripts/Notifiers/ScheduledNotifier.cs | 10 ++- .../UniRx/Scripts/Observable.Aggregate.cs | 10 ++- .../UniRx/Scripts/Observable.Awaiter.cs | 10 ++- .../UniRx/Scripts/Observable.Binding.cs | 10 ++- .../UniRx/Scripts/Observable.Blocking.cs | 10 ++- .../UniRx/Scripts/Observable.Concatenate.cs | 10 ++- .../UniRx/Scripts/Observable.Concurrency.cs | 10 ++- .../UniRx/Scripts/Observable.Conversions.cs | 10 ++- .../UniRx/Scripts/Observable.Creation.cs | 10 ++- .../UniRx/Scripts/Observable.ErrorHandling.cs | 10 ++- .../UniRx/Scripts/Observable.Events.cs | 10 ++- .../UniRx/Scripts/Observable.FromAsync.cs | 10 ++- .../Plugins/UniRx/Scripts/Observable.Joins.cs | 10 ++- .../UniRx/Scripts/Observable.Paging.cs | 10 ++- .../Plugins/UniRx/Scripts/Observable.Time.cs | 10 ++- .../Plugins/UniRx/Scripts/Observable.cs | 10 ++- .../Assets/Plugins/UniRx/Scripts/Observer.cs | 10 ++- .../UniRx/Scripts/Operators/Aggregate.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Amb.cs | 10 ++- .../UniRx/Scripts/Operators/AsObservable.cs | 10 ++- .../Operators/AsSingleUnitObservable.cs | 10 ++- .../Scripts/Operators/AsUnitObservable.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Buffer.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Cast.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Catch.cs | 10 ++- .../UniRx/Scripts/Operators/CombineLatest.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Concat.cs | 10 ++- .../UniRx/Scripts/Operators/ContinueWith.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Create.cs | 10 ++- .../UniRx/Scripts/Operators/DefaultIfEmpty.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Defer.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Delay.cs | 10 ++- .../Scripts/Operators/DelaySubscription.cs | 10 ++- .../UniRx/Scripts/Operators/Dematerialize.cs | 10 ++- .../UniRx/Scripts/Operators/Distinct.cs | 10 ++- .../Scripts/Operators/DistinctUntilChanged.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Do.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Empty.cs | 10 ++- .../UniRx/Scripts/Operators/Finally.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/First.cs | 10 ++- .../UniRx/Scripts/Operators/ForEachAsync.cs | 10 ++- .../UniRx/Scripts/Operators/FromEvent.cs | 10 ++- .../UniRx/Scripts/Operators/GroupBy.cs | 10 ++- .../UniRx/Scripts/Operators/IgnoreElements.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Last.cs | 10 ++- .../UniRx/Scripts/Operators/Materialize.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Merge.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Never.cs | 10 ++- .../UniRx/Scripts/Operators/ObserveOn.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/OfType.cs | 10 ++- .../Operators/OperatorObservableBase.cs | 10 ++- .../Scripts/Operators/OperatorObserverBase.cs | 10 ++- .../UniRx/Scripts/Operators/PairWise.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Range.cs | 10 ++- .../UniRx/Scripts/Operators/RefCount.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Repeat.cs | 10 ++- .../UniRx/Scripts/Operators/RepeatSafe.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Return.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Sample.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Scan.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Select.cs | 10 ++- .../UniRx/Scripts/Operators/SelectMany.cs | 10 ++- .../UniRx/Scripts/Operators/SelectWhere.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Single.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Skip.cs | 10 ++- .../UniRx/Scripts/Operators/SkipUntil.cs | 10 ++- .../UniRx/Scripts/Operators/SkipWhile.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Start.cs | 10 ++- .../UniRx/Scripts/Operators/StartWith.cs | 10 ++- .../UniRx/Scripts/Operators/SubscribeOn.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Switch.cs | 10 ++- .../UniRx/Scripts/Operators/Synchronize.cs | 10 ++- .../Scripts/Operators/SynchronizedObserver.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Take.cs | 10 ++- .../UniRx/Scripts/Operators/TakeLast.cs | 10 ++- .../UniRx/Scripts/Operators/TakeUntil.cs | 10 ++- .../UniRx/Scripts/Operators/TakeWhile.cs | 10 ++- .../UniRx/Scripts/Operators/Throttle.cs | 10 ++- .../UniRx/Scripts/Operators/ThrottleFirst.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Throw.cs | 10 ++- .../UniRx/Scripts/Operators/TimeInterval.cs | 10 ++- .../UniRx/Scripts/Operators/Timeout.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Timer.cs | 10 ++- .../UniRx/Scripts/Operators/Timestamp.cs | 10 ++- .../UniRx/Scripts/Operators/ToArray.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/ToList.cs | 10 ++- .../UniRx/Scripts/Operators/ToObservable.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Wait.cs | 10 ++- .../UniRx/Scripts/Operators/WhenAll.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Where.cs | 10 ++- .../UniRx/Scripts/Operators/WhereSelect.cs | 10 ++- .../UniRx/Scripts/Operators/WithLatestFrom.cs | 10 ++- .../Plugins/UniRx/Scripts/Operators/Zip.cs | 10 ++- .../UniRx/Scripts/Operators/ZipLatest.cs | 10 ++- .../Assets/Plugins/UniRx/Scripts/Pair.cs | 10 ++- .../Schedulers/CurrentThreadScheduler.cs | 10 ++- .../UniRx/Scripts/Schedulers/IScheduler.cs | 10 ++- .../Scripts/Schedulers/ImmediateScheduler.cs | 10 ++- .../UniRx/Scripts/Schedulers/Scheduler.cs | 10 ++- .../Scripts/Schedulers/ThreadPoolScheduler.cs | 10 ++- .../UniRx/Scripts/Subjects/AsyncSubject.cs | 10 ++- .../UniRx/Scripts/Subjects/BehaviorSubject.cs | 10 ++- .../Scripts/Subjects/ConnectableObservable.cs | 10 ++- .../UniRx/Scripts/Subjects/ISubject.cs | 10 ++- .../UniRx/Scripts/Subjects/ReplaySubject.cs | 10 ++- .../Plugins/UniRx/Scripts/Subjects/Subject.cs | 10 ++- .../Scripts/Subjects/SubjectExtensions.cs | 10 ++- .../UniRx/Scripts/System/IObservable.cs | 10 ++- .../Plugins/UniRx/Scripts/System/IObserver.cs | 10 ++- .../Scripts/System/IOptimizedObservable.cs | 10 ++- .../Plugins/UniRx/Scripts/System/IProgress.cs | 10 ++- .../Plugins/UniRx/Scripts/System/Tuple.cs | 10 ++- .../Plugins/UniRx/Scripts/System/Unit.cs | 10 ++- .../Scripts/Tasks/TaskObservableExtensions.cs | 10 ++- .../Plugins/UniRx/Scripts/TimeInterval.cs | 10 ++- .../Plugins/UniRx/Scripts/Timestamped.cs | 10 ++- .../AsyncOperationExtensions.cs | 10 ++- .../UnityEngineBridge/CancellationToken.cs | 10 ++- .../UnityEngineBridge/CoroutineAsyncBridge.cs | 10 ++- .../UnityEngineBridge/Diagnostics/LogEntry.cs | 10 ++- .../Diagnostics/LogEntryExtensions.cs | 10 ++- .../UnityEngineBridge/Diagnostics/Logger.cs | 10 ++- .../Diagnostics/ObservableDebugExtensions.cs | 10 ++- .../Diagnostics/ObservableLogger.cs | 10 ++- .../Diagnostics/UnityDebugSink.cs | 10 ++- .../UnityEngineBridge/FrameInterval.cs | 10 ++- .../InspectableReactiveProperty.cs | 10 ++- .../InspectorDisplayDrawer.cs | 10 ++- .../LifetimeDisposableExtensions.cs | 10 ++- .../UnityEngineBridge/MainThreadDispatcher.cs | 8 ++ .../UnityEngineBridge/MainThreadScheduler.cs | 8 ++ .../UnityEngineBridge/Observable.Unity.cs | 10 ++- .../UnityEngineBridge/ObservableWWW.cs | 8 ++ .../UnityEngineBridge/ObserveExtensions.cs | 10 ++- .../UnityEngineBridge/Operators/BatchFrame.cs | 10 ++- .../UnityEngineBridge/Operators/DelayFrame.cs | 10 ++- .../Operators/DelayFrameSubscription.cs | 10 ++- .../Operators/FrameInterval.cs | 10 ++- .../Operators/FrameTimeInterval.cs | 10 ++- .../Operators/FromCoroutine.cs | 10 ++- .../Operators/RepeatUntil.cs | 10 ++- .../Operators/SampleFrame.cs | 10 ++- .../Operators/SubscribeOnMainThread.cs | 10 ++- .../Operators/ThrottleFirstFrame.cs | 10 ++- .../Operators/ThrottleFrame.cs | 10 ++- .../Operators/TimeoutFrame.cs | 10 ++- .../UnityEngineBridge/ReactiveCollection.cs | 10 ++- .../UnityEngineBridge/ReactiveCommand.cs | 10 ++- .../UnityEngineBridge/ReactiveDictionary.cs | 10 ++- .../UnityEngineBridge/ReactiveProperty.cs | 10 ++- .../ScenePlaybackDetector.cs | 8 ++ .../UnityEngineBridge/Toolkit/ObjectPool.cs | 10 ++- .../Triggers/ObservableAnimatorTrigger.cs | 10 ++- .../Triggers/ObservableBeginDragTrigger.cs | 10 ++- .../Triggers/ObservableCancelTrigger.cs | 10 ++- .../ObservableCanvasGroupChangedTrigger.cs | 10 ++- .../Triggers/ObservableCollision2DTrigger.cs | 10 ++- .../Triggers/ObservableCollisionTrigger.cs | 10 ++- .../Triggers/ObservableDeselectTrigger.cs | 10 ++- .../Triggers/ObservableDestroyTrigger.cs | 10 ++- .../Triggers/ObservableDragTrigger.cs | 10 ++- .../Triggers/ObservableDropTrigger.cs | 10 ++- .../Triggers/ObservableEnableTrigger.cs | 10 ++- .../Triggers/ObservableEndDragTrigger.cs | 10 ++- .../Triggers/ObservableEventTrigger.cs | 10 ++- .../Triggers/ObservableFixedUpdateTrigger.cs | 10 ++- ...bservableInitializePotentialDragTrigger.cs | 10 ++- .../Triggers/ObservableJointTrigger.cs | 10 ++- .../Triggers/ObservableLateUpdateTrigger.cs | 10 ++- .../Triggers/ObservableMouseTrigger.cs | 10 ++- .../Triggers/ObservableMoveTrigger.cs | 10 ++- .../Triggers/ObservableParticleTrigger.cs | 10 ++- .../Triggers/ObservablePointerClickTrigger.cs | 10 ++- .../Triggers/ObservablePointerDownTrigger.cs | 10 ++- .../Triggers/ObservablePointerEnterTrigger.cs | 10 ++- .../Triggers/ObservablePointerExitTrigger.cs | 10 ++- .../Triggers/ObservablePointerUpTrigger.cs | 10 ++- .../ObservableRectTransformTrigger.cs | 10 ++- .../Triggers/ObservableScrollTrigger.cs | 10 ++- .../Triggers/ObservableSelectTrigger.cs | 10 ++- .../Triggers/ObservableStateMachineTrigger.cs | 10 ++- .../Triggers/ObservableSubmitTrigger.cs | 10 ++- .../ObservableTransformChangedTrigger.cs | 10 ++- .../Triggers/ObservableTrigger2DTrigger.cs | 10 ++- .../Triggers/ObservableTriggerBase.cs | 10 ++- .../ObservableTriggerExtensions.Component.cs | 10 ++- .../Triggers/ObservableTriggerExtensions.cs | 10 ++- .../Triggers/ObservableTriggerTrigger.cs | 10 ++- .../ObservableUpdateSelectedTrigger.cs | 10 ++- .../Triggers/ObservableUpdateTrigger.cs | 10 ++- .../Triggers/ObservableVisibleTrigger.cs | 10 ++- .../UnityEngineBridge/UnityEventExtensions.cs | 10 ++- .../UnityGraphicExtensions.cs | 10 ++- .../UnityUIComponentExtensions.cs | 10 ++- .../YieldInstructionCache.cs | 10 ++- .../UniRx/Scripts/UnityWinRTBridge/Thread.cs | 10 ++- .../ThreadPoolScheduler_UnityWinRT.cs | 10 ++- .../Bindings/TestDiContainerMethods/Foo.cs | 10 ++- .../Bindings/TestDiContainerMethods/Foo2.cs | 10 ++- .../Bindings/TestDiContainerMethods/Gorp.cs | 10 ++- .../Bindings/TestDiContainerMethods/Gorp2.cs | 10 ++- .../Foo.cs | 8 ++ .../FooInstaller.cs | 10 ++- .../Gorp.cs | 8 ++ .../TestFromGameObjectInstaller/Bar.cs | 10 ++- .../TestFromGameObjectInstaller/Foo.cs | 10 ++- .../Bob.cs | 8 ++ .../Foo.cs | 10 ++- .../Bindings/TestFromPrefab/Bar.cs | 10 ++- .../Bindings/TestFromPrefab/Bob.cs | 8 ++ .../Bindings/TestFromPrefab/Foo.cs | 10 ++- .../Bindings/TestFromPrefab/Gorp.cs | 10 ++- .../Bindings/TestFromPrefab/Jim.cs | 8 ++ .../Bindings/TestFromPrefab/Norf.cs | 8 ++ .../Bindings/TestFromPrefab/Norf2.cs | 8 ++ .../Bindings/TestFromPrefab/Qux.cs | 10 ++- .../Bindings/TestFromPrefabInstaller/Bar.cs | 10 ++- .../Bindings/TestFromPrefabInstaller/Foo.cs | 10 ++- .../Bindings/TestFromPrefabResource/Bar.cs | 10 ++- .../Bindings/TestFromPrefabResource/Bob.cs | 8 ++ .../Bindings/TestFromPrefabResource/Foo.cs | 10 ++- .../Bindings/TestFromPrefabResource/Gorp.cs | 10 ++- .../Bindings/TestFromPrefabResource/Jim.cs | 8 ++ .../Bindings/TestFromPrefabResource/Norf.cs | 8 ++ .../Bindings/TestFromPrefabResource/Norf2.cs | 8 ++ .../Bindings/TestFromPrefabResource/Qux.cs | 10 ++- .../TestFromSubContainerPrefab/Bar.cs | 8 ++ .../TestFromSubContainerPrefab/CircBar.cs | 8 ++ .../TestFromSubContainerPrefab/CircFoo.cs | 8 ++ .../TestFromSubContainerPrefab/Foo.cs | 10 ++- .../FooInstaller.cs | 10 ++- .../TestFromSubContainerPrefab/Gorp.cs | 8 ++ .../TestFromSubContainerPrefabResource/Bar.cs | 8 ++ .../TestFromSubContainerPrefabResource/Foo.cs | 10 ++- .../FooInstaller.cs | 10 ++- .../Gorp.cs | 8 ++ .../Bindings/TestInstantiateCallback/Foo.cs | 10 ++- .../Factories/PrefabFactory/Foo.cs | 8 ++ .../Factories/PrefabFactory/Foo2.cs | 8 ++ .../Factories/TestBindFactory/Bar.cs | 8 ++ .../Factories/TestBindFactory/Foo.cs | 10 ++- .../Factories/TestBindFactoryFive/Foo.cs | 10 ++- .../TestBindFactoryFive/FooInstaller.cs | 8 ++ .../Factories/TestBindFactoryOne/Bar.cs | 8 ++ .../Factories/TestBindFactoryOne/Foo.cs | 10 ++- .../TestBindFactoryOne/FooInstaller.cs | 8 ++ .../Installers/TestInstallers/BarInstaller.cs | 8 ++ .../Installers/TestInstallers/FooInstaller.cs | 8 ++ .../Installers/TestInstallers/QuxInstaller.cs | 8 ++ .../TestMonoInstallers/BarInstaller.cs | 8 ++ .../TestMonoInstallers/FooInstaller.cs | 8 ++ .../TestMonoInstallers/QuxInstaller.cs | 8 ++ .../BarInstaller.cs | 8 ++ .../FooInstaller.cs | 8 ++ .../QuxInstaller.cs | 8 ++ .../StateBehaviour1.cs | 8 ++ .../Misc/TestZenAutoInjecter/Bar.cs | 8 ++ .../Misc/TestZenAutoInjecter/Gorp.cs | 8 ++ .../Misc/TestZenAutoInjecter/Qux.cs | 8 ++ .../AutoLoader/Scene1Installer.cs | 8 ++ .../AutoLoader/Scene2Installer.cs | 8 ++ .../AutoLoader/Scene3Installer.cs | 8 ++ .../Decorators/Scene1Installer.cs | 8 ++ .../Decorators/Scene2Installer.cs | 8 ++ .../TestDestructionOrder/FooDisposable1.cs | 10 ++- .../TestDestructionOrder/FooDisposable2.cs | 10 ++- .../TestDestructionOrder/FooDisposable3.cs | 10 ++- .../FooMonoBehaviourUnderSceneContext1.cs | 10 ++- .../FooMonoBehaviourUnderSceneContext2.cs | 10 ++- .../FooMonoBehaviourUnderSceneContext3.cs | 10 ++- .../TestDestructionOrder/ProjectInstaller.cs | 8 ++ .../TestDestructionOrder/Scene1Installer.cs | 8 ++ .../TestDestructionOrder/Scene2Installer.cs | 8 ++ .../SceneContextEventsTester.cs | 8 ++ .../TestDiContainerMethods.cs | 8 ++ .../TestFromComponent/TestFromComponentOn.cs | 8 ++ .../TestFromNewComponentOn.cs | 10 ++- .../TestFromComponentInChildren.cs | 8 ++ .../TestFromComponentInHierarchy.cs | 8 ++ ...omComponentInHierarchyGameObjectContext.cs | 8 ++ .../TestFromComponentInParents.cs | 8 ++ .../TestFromComponentInSiblings.cs | 8 ++ .../TestFromGameObject/TestFromGameObject.cs | 10 ++- .../TestFromGameObjectInstaller.cs | 10 ++- .../TestFromNewScriptableObjectResource.cs | 8 ++ .../Bindings/TestFromPrefab/TestFromPrefab.cs | 10 ++- .../TestFromPrefabInstaller.cs | 10 ++- .../TestFromPrefabResource.cs | 10 ++- .../TestFromResource/TestFromResource.cs | 10 ++- .../TestFromSiblingComponent.cs | 10 ++- .../TestFromSubContainerPrefab.cs | 10 ++- .../TestFromSubContainerPrefabResource.cs | 10 ++- .../TestInstantiateCallback.cs | 8 ++ .../Tests/Bindings/TestLazy/TestLazy.cs | 8 ++ .../PrefabFactory/TestPrefabFactory.cs | 10 ++- .../TestBindFactory/TestBindFactory.cs | 10 ++- .../TestBindFactoryFive.cs | 10 ++- .../TestBindFactoryOne/TestBindFactoryOne.cs | 10 ++- .../TestMemoryPools/TestMemoryPool1.cs | 8 ++ .../TestInstallers/TestInstallers.cs | 10 ++- .../TestMonoInstallers/TestMonoInstallers.cs | 10 ++- .../TestScriptableObjectInstallers.cs | 10 ++- .../TestIntegrationTest.cs | 8 ++ .../TestAnimationStateBehaviourInject.cs | 10 ++- .../DelayedInitializeKernel.cs | 10 ++- .../KernelDecoratorInstaller.cs | 8 ++ .../TestMonoKernelDecoration.cs | 8 ++ .../TestZenAutoInjecter.cs | 8 ++ .../SceneTests/TestSceneContextEvents.cs | 8 ++ .../Tests/Util/FixtureUtil.cs | 8 ++ .../Editor/DebugWindow/InPlaceStableSort.cs | 8 ++ .../Editor/DebugWindow/MpmView.cs | 8 ++ .../Editor/DebugWindow/MpmWindow.cs | 8 ++ .../Editor/MpmSettingsInstaller.cs | 8 ++ .../Common/CecilExtensions.cs | 10 ++- .../Common/ReflectionBakingModuleEditor.cs | 8 ++ .../Unity/AssemblyPathRegistry.cs | 10 ++- .../Unity/ReflectionBakingBuildObserver.cs | 8 ++ .../Unity/ReflectionBakingInternalUtil.cs | 8 ++ .../Unity/ReflectionBakingMenuItems.cs | 8 ++ .../Unity/UnityAssemblyResolver.cs | 10 ++- .../Unity/ZenjectReflectionBakingSettings.cs | 8 ++ .../ZenjectReflectionBakingSettingsEditor.cs | 10 ++- .../Scripts/Asteroid/Asteroid.cs | 8 ++ .../Scripts/Asteroid/AsteroidManager.cs | 8 ++ .../Scripts/Installers/GameInstaller.cs | 10 ++- .../Installers/GameSettingsInstaller.cs | 8 ++ .../Scripts/Main/GameController.cs | 8 ++ .../Scripts/Misc/AudioHandler.cs | 8 ++ .../Scripts/Misc/GuiHandler.cs | 8 ++ .../Scripts/Misc/LevelHelper.cs | 8 ++ .../Scripts/Misc/TilingBackground.cs | 10 ++- .../Scripts/Ship/Ship.cs | 8 ++ .../Scripts/Ship/ShipStateFactory.cs | 8 ++ .../Scripts/Ship/States/BrokenShipFactory.cs | 8 ++ .../Scripts/Ship/States/ExplosionFactory.cs | 8 ++ .../Scripts/Ship/States/ShipState.cs | 8 ++ .../Scripts/Ship/States/ShipStateDead.cs | 8 ++ .../Scripts/Ship/States/ShipStateMoving.cs | 8 ++ .../Ship/States/ShipStateWaitingToStart.cs | 8 ++ .../Scripts/Util/GameEvents.cs | 8 ++ .../Scripts/Util/UnityExtensionMethods.cs | 8 ++ .../Scripts/Enemy/EnemyCommonSettings.cs | 8 ++ .../Scripts/Enemy/EnemyDeathHandler.cs | 8 ++ .../Scripts/Enemy/EnemyFacade.cs | 10 ++- .../Scripts/Enemy/EnemyRegistry.cs | 8 ++ .../Scripts/Enemy/EnemyRotationHandler.cs | 8 ++ .../Scripts/Enemy/EnemyStateManager.cs | 8 ++ .../Scripts/Enemy/EnemyTunables.cs | 8 ++ .../Scripts/Enemy/EnemyView.cs | 8 ++ .../Scripts/Enemy/GameEvents.cs | 8 ++ .../Scripts/Enemy/States/EnemyStateAttack.cs | 8 ++ .../Scripts/Enemy/States/EnemyStateFollow.cs | 8 ++ .../Scripts/Enemy/States/EnemyStateIdle.cs | 8 ++ .../Scripts/Installers/EnemyInstaller.cs | 10 ++- .../Scripts/Installers/GameInstaller.cs | 10 ++- .../Installers/GameSettingsInstaller.cs | 8 ++ .../Installers/GameSignalsInstaller.cs | 8 ++ .../Scripts/Installers/PlayerInstaller.cs | 10 ++- .../Scripts/Misc/AudioPlayer.cs | 8 ++ .../Scripts/Misc/Bullet.cs | 10 ++- .../Scripts/Misc/ControlsDisplay.cs | 8 ++ .../Scripts/Misc/EnemySpawner.cs | 8 ++ .../Scripts/Misc/Explosion.cs | 8 ++ .../Scripts/Misc/GameRestartHandler.cs | 8 ++ .../Scripts/Misc/LevelBoundary.cs | 8 ++ .../Scripts/Player/PlayerDamageHandler.cs | 8 ++ .../Scripts/Player/PlayerDirectionHandler.cs | 8 ++ .../Scripts/Player/PlayerFacade.cs | 10 ++- .../Scripts/Player/PlayerGui.cs | 8 ++ .../Scripts/Player/PlayerHealthWatcher.cs | 8 ++ .../Scripts/Player/PlayerInputHandler.cs | 8 ++ .../Scripts/Player/PlayerInputState.cs | 8 ++ .../Scripts/Player/PlayerModel.cs | 8 ++ .../Scripts/Player/PlayerMoveHandler.cs | 8 ++ .../Scripts/Player/PlayerShootHandler.cs | 8 ++ .../BindSignal/BindSignalFromBinder.cs | 8 ++ .../BindSignal/BindSignalIdToBinder.cs | 8 ++ .../Binders/BindSignal/BindSignalToBinder.cs | 8 ++ .../SignalCallbackWithLookupWrapper.cs | 8 ++ .../BindSignal/SignalCallbackWrapper.cs | 8 ++ ...eclareSignalAsyncTickPriorityCopyBinder.cs | 8 ++ ...quireHandlerAsyncTickPriorityCopyBinder.cs | 8 ++ ...quireHandlerAsyncTickPriorityCopyBinder.cs | 8 ++ .../DeclareSignal/SignalBindingBindInfo.cs | 8 ++ .../SignalDeclarationBindInfo.cs | 8 ++ .../Internal/Binders/SignalCopyBinder.cs | 8 ++ .../Internal/Binders/SignalExtensions.cs | 8 ++ .../Binders/SignalTickPriorityCopyBinder.cs | 8 ++ .../Signals/Internal/SignalDeclaration.cs | 8 ++ .../Signals/Internal/SignalSubscription.cs | 8 ++ .../Signals/Internal/SignalSubscriptionId.cs | 8 ++ .../OptionalExtras/Signals/Main/SignalBus.cs | 8 ++ .../Signals/Main/SignalBusInstaller.cs | 8 ++ .../Main/SignalDeclarationAsyncInitializer.cs | 8 ++ .../TestFramework/SceneTestFixture.cs | 8 ++ .../SceneTestFixtureSceneReference.cs | 8 ++ .../TestFramework/ValidateOnlyAttribute.cs | 8 ++ .../ZenjectIntegrationTestFixture.cs | 8 ++ .../TestFramework/ZenjectTestUtil.cs | 8 ++ .../TestFramework/ZenjectUnitTestFixture.cs | 10 ++- .../TestBindingInheritanceMethod.cs | 8 ++ .../BindFeatures/TestConcreteIdentifier.cs | 8 ++ .../Editor/BindFeatures/TestIfNotBound.cs | 8 ++ .../TestMoveIntoAllSubContainers.cs | 1 + .../TestMoveIntoDirectSubContainers.cs | 1 + .../BindFeatures/TestMultipleContractTypes.cs | 8 ++ .../TestMultipleContractTypes2.cs | 8 ++ .../TestMultipleContractTypes3.cs | 8 ++ .../Editor/BindFeatures/TestNonLazy.cs | 8 ++ .../Editor/BindFeatures/TestRebind.cs | 8 ++ .../Editor/BindFeatures/TestUnbind.cs | 8 ++ .../Editor/BindFeatures/TestWithArguments.cs | 8 ++ .../UnitTests/Editor/Bindings/TestFrom.cs | 8 ++ .../Editor/Bindings/TestFromFactory.cs | 8 ++ .../Editor/Bindings/TestFromGetter.cs | 8 ++ .../Editor/Bindings/TestFromIFactory.cs | 8 ++ .../Editor/Bindings/TestFromIFactory2.cs | 8 ++ .../Editor/Bindings/TestFromInstance.cs | 8 ++ .../Editor/Bindings/TestFromMethod.cs | 8 ++ .../Editor/Bindings/TestFromMethodMultiple.cs | 8 ++ .../Bindings/TestFromMethodMultipleUntyped.cs | 8 ++ .../Editor/Bindings/TestFromResolve.cs | 8 ++ .../Bindings/TestFromSubContainerInstaller.cs | 8 ++ .../Bindings/TestFromSubContainerInstance.cs | 8 ++ .../TestFromSubContainerInstanceGetter.cs | 8 ++ .../Bindings/TestFromSubContainerMethod.cs | 8 ++ .../Editor/Bindings/TestNonGeneric.cs | 8 ++ .../Editor/Bindings/TestWithKernel.cs | 8 ++ .../Editor/Conditions/TestConditionsBasic.cs | 8 ++ .../Conditions/TestConditionsComplex.cs | 8 ++ .../Conditions/TestConditionsFieldName.cs | 8 ++ .../Conditions/TestConditionsIdentifier.cs | 8 ++ .../Conditions/TestConditionsParents.cs | 8 ++ .../Editor/Conditions/TestConditionsTarget.cs | 8 ++ .../TestConditionsTargetInstance.cs | 8 ++ .../Editor/Conditions/TestIdentifierTypes.cs | 8 ++ .../Editor/Conditions/TestIdentifiers.cs | 8 ++ .../UnitTests/Editor/Conventions/Foo.cs | 8 ++ .../UnitTests/Editor/Conventions/FooMore.cs | 8 ++ .../Editor/Conventions/TestConvention.cs | 8 ++ .../Editor/Conventions/TestConvention2.cs | 8 ++ .../Editor/Conventions/TestConventionNames.cs | 8 ++ .../Factories/Bindings/TestFactoryFrom0.cs | 8 ++ .../Factories/Bindings/TestFactoryFrom1.cs | 8 ++ .../Factories/Bindings/TestFactoryFrom5.cs | 8 ++ .../Bindings/TestFactoryFromFactory0.cs | 8 ++ .../Bindings/TestFactoryFromFactory1.cs | 8 ++ .../Bindings/TestFactoryFromGetter0.cs | 8 ++ .../Bindings/TestFactoryFromInstance0.cs | 8 ++ .../Bindings/TestFactoryFromMethod0.cs | 8 ++ .../Bindings/TestFactoryFromMethod1.cs | 8 ++ .../Bindings/TestFactoryFromResolve0.cs | 8 ++ .../TestFactoryFromSubContainerInstaller0.cs | 8 ++ .../TestFactoryFromSubContainerInstaller1.cs | 8 ++ .../TestFactoryFromSubContainerMethod0.cs | 8 ++ .../TestFactoryFromSubContainerMethod1.cs | 8 ++ .../Bindings/TestFactoryWithArguments.cs | 8 ++ .../Editor/Factories/IFactory/TestIFactory.cs | 8 ++ .../UnitTests/Editor/Factories/TestFactory.cs | 8 ++ .../Editor/Injection/TestAllInjectionTypes.cs | 8 ++ .../TestBaseClassPropertyInjection.cs | 8 ++ .../Injection/TestCircularDependencies.cs | 8 ++ .../Injection/TestConstructorInjection.cs | 8 ++ .../TestConstructorInjectionOptional.cs | 8 ++ .../Injection/TestDuplicateInjection.cs | 8 ++ .../Editor/Injection/TestInjectSources.cs | 8 ++ .../Editor/Injection/TestListInjection.cs | 8 ++ .../Editor/Injection/TestNullableValues.cs | 8 ++ .../Editor/Injection/TestParameters.cs | 8 ++ .../Editor/Injection/TestPostInjectCall.cs | 8 ++ .../Injection/TestPostInjectParameters.cs | 8 ++ .../Editor/Injection/TestPropertyInjection.cs | 8 ++ .../Editor/Injection/TestStructInjection.cs | 8 ++ .../Editor/Injection/TestTestOptional.cs | 8 ++ .../Editor/MemoryPool/TestArrayPool.cs | 8 ++ .../Editor/MemoryPool/TestDisposeBlock.cs | 8 ++ .../TestFromPoolableMemoryPoolOne.cs | 8 ++ .../TestFromPoolableMemoryPoolSix.cs | 8 ++ .../TestFromPoolableMemoryPoolValidation.cs | 8 ++ .../TestFromPoolableMemoryPoolZero.cs | 8 ++ .../Editor/MemoryPool/TestMemoryPool0.cs | 8 ++ .../MemoryPool/TestMemoryPoolCustomFactory.cs | 8 ++ .../TestPoolableStaticMemoryPool.cs | 8 ++ .../Editor/MemoryPool/TestStaticMemoryPool.cs | 8 ++ .../UnitTests/Editor/Other/TestAllocs.cs | 8 ++ .../UnitTests/Editor/Other/TestAsSingle.cs | 8 ++ .../Editor/Other/TestBindCallbacks.cs | 8 ++ .../Editor/Other/TestCircularDependencies.cs | 8 ++ .../Editor/Other/TestClearCacheProvider.cs | 8 ++ .../Editor/Other/TestCustomInjectAttribute.cs | 8 ++ .../Editor/Other/TestDecoratorValidation.cs | 8 ++ .../UnitTests/Editor/Other/TestDecorators.cs | 8 ++ .../Editor/Other/TestFacadeSubContainer.cs | 8 ++ .../TestFactoryMemoryPoolCustomInterface.cs | 8 ++ .../Editor/Other/TestGenericContract.cs | 8 ++ .../Editor/Other/TestKeyedFactoryExample.cs | 8 ++ .../UnitTests/Editor/Other/TestLazy.cs | 8 ++ .../Editor/Other/TestNestedContainer.cs | 8 ++ .../Editor/Other/TestPoolableManager.cs | 8 ++ .../UnitTests/Editor/Other/TestResolve.cs | 8 ++ .../UnitTests/Editor/Other/TestResolveMany.cs | 8 ++ .../Editor/Other/TestSubContainers.cs | 8 ++ .../Editor/Other/TestSubContainers4.cs | 8 ++ .../UnitTests/Editor/Other/TestTaskUpdater.cs | 8 ++ .../UnitTests/Editor/Other/TestTestUtil.cs | 8 ++ .../Editor/Other/TestTransientMockProvider.cs | 8 ++ .../UnitTests/Editor/Other/TestValidation.cs | 8 ++ .../Editor/Other/TestValidationSettings.cs | 8 ++ .../Editor/Other/ZenjectProfileTest.cs | 8 ++ .../Profiling/TestInstantiateApproaches.cs | 8 ++ .../Editor/Signals/TestAsyncSignals.cs | 8 ++ .../Editor/Signals/TestBindSignal.cs | 8 ++ .../Editor/Signals/TestSignalIdentifiers.cs | 8 ++ .../Signals/TestSignalRuntimeDeclaration.cs | 8 ++ .../UnitTests/Editor/Signals/TestSignals1.cs | 8 ++ .../Editor/Signals/TestSignalsAdvanced.cs | 8 ++ .../UnitTests/Editor/Util/TestListComparer.cs | 8 ++ .../Source/Binding/BindInfo/BindInfo.cs | 8 ++ .../Source/Binding/BindInfo/BindStatement.cs | 8 ++ .../Binding/BindInfo/FactoryBindInfo.cs | 8 ++ .../BindInfo/GameObjectCreationParameters.cs | 8 ++ .../Binding/BindInfo/MemoryPoolBindInfo.cs | 8 ++ .../Binders/ArgConditionCopyNonLazyBinder.cs | 8 ++ .../ConcreteBinders/ConcreteBinderGeneric.cs | 8 ++ .../ConcreteBinderNonGeneric.cs | 8 ++ .../ConcreteIdBinderGeneric.cs | 8 ++ .../ConcreteIdBinderNonGeneric.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ .../Binders/ConditionCopyNonLazyBinder.cs | 8 ++ .../ConventionAssemblySelectionBinder.cs | 8 ++ .../Binders/Conventions/ConventionBindInfo.cs | 8 ++ .../ConventionFilterTypesBinder.cs | 8 ++ .../ConventionSelectTypesBinder.cs | 8 ++ .../Binding/Binders/CopyNonLazyBinder.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ .../FactoryArgumentsToChoiceBinder0.cs | 8 ++ .../FactoryArgumentsToChoiceBinder1.cs | 8 ++ .../FactoryArgumentsToChoiceBinder10.cs | 8 ++ .../FactoryArgumentsToChoiceBinder2.cs | 8 ++ .../FactoryArgumentsToChoiceBinder3.cs | 8 ++ .../FactoryArgumentsToChoiceBinder4.cs | 8 ++ .../FactoryArgumentsToChoiceBinder5.cs | 8 ++ .../FactoryArgumentsToChoiceBinder6.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder0.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder1.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder10.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder2.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder3.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder4.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder5.cs | 8 ++ .../FactoryFromBinder/FactoryFromBinder6.cs | 8 ++ .../FactorySubContainerBinder0.cs | 8 ++ .../FactorySubContainerBinder1.cs | 8 ++ .../FactorySubContainerBinder10.cs | 8 ++ .../FactorySubContainerBinder2.cs | 8 ++ .../FactorySubContainerBinder3.cs | 8 ++ .../FactorySubContainerBinder4.cs | 8 ++ .../FactorySubContainerBinder5.cs | 8 ++ .../FactorySubContainerBinder6.cs | 8 ++ .../FactorySubContainerBinderBase.cs | 8 ++ .../FactorySubContainerBinderWithParams.cs | 8 ++ .../Untyped/FactoryFromBinderUntyped.cs | 8 ++ .../Binders/Factory/FactoryFromBinderBase.cs | 8 ++ .../DecoratorToChoiceFromBinder.cs | 8 ++ .../FactoryToChoiceBinder0.cs | 8 ++ .../FactoryToChoiceBinder1.cs | 8 ++ .../FactoryToChoiceBinder10.cs | 8 ++ .../FactoryToChoiceBinder2.cs | 8 ++ .../FactoryToChoiceBinder3.cs | 8 ++ .../FactoryToChoiceBinder4.cs | 8 ++ .../FactoryToChoiceBinder5.cs | 8 ++ .../FactoryToChoiceBinder6.cs | 8 ++ .../FactoryToChoiceIdBinder0.cs | 8 ++ .../FactoryToChoiceIdBinder1.cs | 8 ++ .../FactoryToChoiceIdBinder10.cs | 8 ++ .../FactoryToChoiceIdBinder2.cs | 8 ++ .../FactoryToChoiceIdBinder3.cs | 8 ++ .../FactoryToChoiceIdBinder4.cs | 8 ++ .../FactoryToChoiceIdBinder5.cs | 8 ++ .../FactoryToChoiceIdBinder6.cs | 8 ++ .../PlaceholderFactoryBindingFinalizer.cs | 8 ++ .../Pooling/MemoryPoolBindingFinalizer.cs | 8 ++ .../Factory/Pooling/MemoryPoolExpandBinder.cs | 8 ++ .../Pooling/MemoryPoolInitialSizeBinder.cs | 8 ++ .../Binding/Binders/FromBinders/FromBinder.cs | 8 ++ .../Binders/FromBinders/FromBinderGeneric.cs | 8 ++ .../FromBinders/FromBinderNonGeneric.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ .../Source/Binding/Binders/IdBinder.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ .../Binding/Binders/IfNotBoundBinder.cs | 8 ++ ...tiateCallbackConditionCopyNonLazyBinder.cs | 8 ++ .../Source/Binding/Binders/NonLazyBinder.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ .../Binding/Binders/SubContainerBinder.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ ...ConcreteIdArgConditionCopyNonLazyBinder.cs | 8 ++ .../Zenject/Source/Binding/BindingUtil.cs | 8 ++ .../Binding/Finalizers/IBindingFinalizer.cs | 8 ++ .../Finalizers/NullBindingFinalizer.cs | 8 ++ .../Finalizers/PrefabBindingFinalizer.cs | 8 ++ .../PrefabResourceBindingFinalizer.cs | 8 ++ .../Finalizers/ProviderBindingFinalizer.cs | 8 ++ .../Finalizers/ScopableBindingFinalizer.cs | 8 ++ .../SingleProviderBindingFinalizer.cs | 8 ++ .../SubContainerBindingFinalizer.cs | 8 ++ .../SubContainerPrefabBindingFinalizer.cs | 8 ++ .../Source/Editor/EditorStaticInstaller.cs | 8 ++ .../EditorWindow/ZenjectEditorWindow.cs | 8 ++ .../Source/Editor/Editors/ContextEditor.cs | 8 ++ .../Editor/Editors/GameObjectContextEditor.cs | 8 ++ .../Editor/Editors/ProjectContextEditor.cs | 8 ++ .../Editor/Editors/RunnableContextEditor.cs | 10 ++- .../Editor/Editors/SceneContextEditor.cs | 8 ++ .../Editors/SceneDecoratorContextEditor.cs | 8 ++ .../Source/Editor/ObjectGraphVisualizer.cs | 8 ++ .../DefaultSceneContractConfig.cs | 8 ++ .../SceneParentAutomaticLoader.cs | 10 ++- .../Source/Editor/UnityInspectorListEditor.cs | 8 ++ .../Zenject/Source/Editor/ZenMenuItems.cs | 8 ++ .../Source/Editor/ZenUnityEditorUtil.cs | 8 ++ .../Factories/FactoryProviderWrapper.cs | 8 ++ .../Zenject/Source/Factories/IFactory.cs | 8 ++ .../Zenject/Source/Factories/KeyedFactory.cs | 8 ++ .../Source/Factories/PlaceholderFactory.cs | 8 ++ .../Factories/PlaceholderFactoryBase.cs | 8 ++ .../Source/Factories/Pooling/IMemoryPool.cs | 8 ++ .../Source/Factories/Pooling/MemoryPool.cs | 8 ++ .../Factories/Pooling/MemoryPoolBase.cs | 10 ++- .../Factories/Pooling/MonoMemoryPool.cs | 8 ++ .../Pooling/MonoPoolableMemoryPool.cs | 8 ++ .../Source/Factories/Pooling/PoolFactory.cs | 8 ++ .../Factories/Pooling/PoolableMemoryPool.cs | 8 ++ .../Static/PoolableStaticMemoryPool.cs | 8 ++ .../Pooling/Static/StaticMemoryPool.cs | 8 ++ .../Factories/Pooling/Util/ArrayPool.cs | 8 ++ .../Factories/Pooling/Util/DictionaryPool.cs | 8 ++ .../Factories/Pooling/Util/HashSetPool.cs | 8 ++ .../Source/Factories/Pooling/Util/ListPool.cs | 8 ++ .../Pooling/Util/PoolCleanupChecker.cs | 8 ++ .../Pooling/Util/StaticMemoryPoolRegistry.cs | 8 ++ .../Zenject/Source/Factories/PrefabFactory.cs | 10 ++- .../Source/Factories/PrefabResourceFactory.cs | 8 ++ .../Zenject/Source/Injection/InjectContext.cs | 8 ++ .../Zenject/Source/Injection/InjectUtil.cs | 8 ++ .../Zenject/Source/Injection/LazyInject.cs | 8 ++ .../Source/Install/Contexts/Context.cs | 8 ++ .../Install/Contexts/GameObjectContext.cs | 8 ++ .../Source/Install/Contexts/ProjectContext.cs | 8 ++ .../Install/Contexts/RunnableContext.cs | 10 ++- .../Source/Install/Contexts/SceneContext.cs | 8 ++ .../Install/Contexts/SceneDecoratorContext.cs | 8 ++ .../Source/Install/Contexts/StaticContext.cs | 8 ++ .../Zenject/Source/Install/IInstaller.cs | 8 ++ .../Zenject/Source/Install/Installer.cs | 8 ++ .../Zenject/Source/Install/InstallerBase.cs | 8 ++ .../Zenject/Source/Install/MonoInstaller.cs | 8 ++ .../Source/Install/MonoInstallerBase.cs | 8 ++ .../Install/ScriptableObjectInstaller.cs | 8 ++ .../Install/ScriptableObjectInstallerBase.cs | 8 ++ .../Zenject/Source/Install/ZenjectBinding.cs | 8 ++ .../Install/ZenjectManagersInstaller.cs | 8 ++ .../Plugins/Zenject/Source/Internal/Assert.cs | 10 ++- .../Plugins/Zenject/Source/Internal/Func.cs | 8 ++ .../Zenject/Source/Internal/LinqExtensions.cs | 8 ++ .../Plugins/Zenject/Source/Internal/Log.cs | 8 ++ .../Zenject/Source/Internal/MiscExtensions.cs | 8 ++ .../Source/Internal/PreserveAttribute.cs | 8 ++ .../Zenject/Source/Internal/TypeExtensions.cs | 8 ++ .../Source/Internal/TypeStringFormatter.cs | 8 ++ .../Zenject/Source/Internal/ValuePair.cs | 8 ++ .../Plugins/Zenject/Source/Main/BindingId.cs | 8 ++ .../Zenject/Source/Main/DiContainer.cs | 10 ++- .../Zenject/Source/Main/IInstantiator.cs | 8 ++ .../Source/Main/LazyInstanceInjector.cs | 8 ++ .../Plugins/Zenject/Source/Main/LookupId.cs | 8 ++ .../Source/Main/SingletonMarkRegistry.cs | 8 ++ .../Zenject/Source/Main/ZenjectSettings.cs | 8 ++ .../Providers/CachedOpenTypeProvider.cs | 8 ++ .../Source/Providers/CachedProvider.cs | 8 ++ ...AddToCurrentGameObjectComponentProvider.cs | 8 ++ ...ddToExistingGameObjectComponentProvider.cs | 8 ++ .../AddToGameObjectComponentProviderBase.cs | 8 ++ .../AddToNewGameObjectComponentProvider.cs | 8 ++ .../GetFromGameObjectComponentProvider.cs | 8 ++ ...etFromGameObjectGetterComponentProvider.cs | 8 ++ .../GetFromPrefabComponentProvider.cs | 8 ++ .../InstantiateOnPrefabComponentProvider.cs | 8 ++ .../Providers/Decorator/DecoratorProvider.cs | 8 ++ .../EmptyGameObjectProvider.cs | 8 ++ .../PrefabGameObjectProvider.cs | 8 ++ .../Source/Providers/GetterProvider.cs | 8 ++ .../Source/Providers/IFactoryProvider.cs | 8 ++ .../Zenject/Source/Providers/IProvider.cs | 8 ++ .../Source/Providers/IProviderExtensions.cs | 8 ++ .../Source/Providers/InstanceProvider.cs | 8 ++ .../MethodMultipleProviderUntyped.cs | 8 ++ .../Source/Providers/MethodProvider.cs | 8 ++ .../Providers/MethodProviderMultiple.cs | 8 ++ .../Source/Providers/MethodProviderSimple.cs | 8 ++ .../Source/Providers/MethodProviderUntyped.cs | 8 ++ .../Providers/MethodProviderWithContainer.cs | 8 ++ .../Providers/PoolableMemoryPoolProvider.cs | 8 ++ .../PrefabCreators/IPrefabInstantiator.cs | 8 ++ .../PrefabCreators/PrefabInstantiator.cs | 8 ++ .../PrefabInstantiatorCached.cs | 8 ++ .../PrefabProviders/IPrefabProvider.cs | 8 ++ .../PrefabProviders/PrefabProvider.cs | 8 ++ .../PrefabProviders/PrefabProviderCustom.cs | 8 ++ .../PrefabProviders/PrefabProviderResource.cs | 8 ++ .../Zenject/Source/Providers/ProviderUtil.cs | 8 ++ .../Source/Providers/ResolveProvider.cs | 8 ++ .../Source/Providers/ResourceProvider.cs | 8 ++ .../ScriptableObjectInstanceProvider.cs | 10 ++- .../ScriptableObjectResourceProvider.cs | 8 ++ .../ISubContainerCreator.cs | 8 ++ .../SubContainerCreatorBindInfo.cs | 8 ++ .../SubContainerCreatorByInstaller.cs | 8 ++ .../SubContainerCreatorByInstance.cs | 8 ++ .../SubContainerCreatorByInstanceGetter.cs | 8 ++ .../SubContainerCreatorByMethod.cs | 8 ++ ...nerCreatorByNewGameObjectDynamicContext.cs | 8 ++ .../SubContainerCreatorByNewPrefab.cs | 8 ++ ...ntainerCreatorByNewPrefabDynamicContext.cs | 8 ++ ...ubContainerCreatorByNewPrefabWithParams.cs | 8 ++ .../SubContainerCreatorCached.cs | 8 ++ .../SubContainerCreatorDynamicContext.cs | 8 ++ .../SubContainerCreatorUtil.cs | 8 ++ .../SubContainerDependencyProvider.cs | 8 ++ .../Source/Providers/TransientProvider.cs | 8 ++ .../AnimatorIkHandlerManager.cs | 8 ++ .../AnimatorInterfaces/AnimatorInstaller.cs | 8 ++ .../AnimatorMoveHandlerManager.cs | 8 ++ .../AnimatorInterfaces/IAnimatorIkHandler.cs | 8 ++ .../IAnimatorMoveHandler.cs | 8 ++ .../Source/Runtime/DisposableManager.cs | 8 ++ .../Source/Runtime/GuiRenderableManager.cs | 8 ++ .../Zenject/Source/Runtime/GuiRenderer.cs | 8 ++ .../Source/Runtime/InitializableManager.cs | 8 ++ .../Runtime/Kernels/DecoratableMonoKernel.cs | 10 ++- .../Kernels/DefaultGameObjectKernel.cs | 8 ++ .../Zenject/Source/Runtime/Kernels/Kernel.cs | 8 ++ .../Source/Runtime/Kernels/MonoKernel.cs | 8 ++ .../Source/Runtime/Kernels/ProjectKernel.cs | 8 ++ .../Source/Runtime/Kernels/SceneKernel.cs | 8 ++ .../Zenject/Source/Runtime/PoolableManager.cs | 8 ++ .../Source/Runtime/SceneContextRegistry.cs | 8 ++ .../SceneContextRegistryAdderAndRemover.cs | 8 ++ .../Zenject/Source/Runtime/TaskUpdater.cs | 8 ++ .../Zenject/Source/Runtime/TickableManager.cs | 8 ++ .../Zenject/Source/Util/ActionInstaller.cs | 8 ++ .../Plugins/Zenject/Source/Util/CheatSheet.cs | 8 ++ .../Util/DefaultGameObjectParentInstaller.cs | 8 ++ .../Zenject/Source/Util/DisposeBlock.cs | 8 ++ .../Source/Util/ExecutionOrderInstaller.cs | 8 ++ .../Zenject/Source/Util/ProfileBlock.cs | 8 ++ .../Zenject/Source/Util/ProfileTimers.cs | 8 ++ .../Util/ReflectionInfoTypeInfoConverter.cs | 8 ++ .../Zenject/Source/Util/ReflectionTypeInfo.cs | 8 ++ .../Zenject/Source/Util/ReflectionUtil.cs | 8 ++ .../Zenject/Source/Util/TypeAnalyzer.cs | 8 ++ .../Plugins/Zenject/Source/Util/UnityUtil.cs | 8 ++ .../Zenject/Source/Util/ValidationUtil.cs | 8 ++ .../Zenject/Source/Util/ZenAutoInjecter.cs | 8 ++ .../Plugins/Zenject/Source/Util/ZenPools.cs | 8 ++ .../Source/Util/ZenReflectionTypeAnalyzer.cs | 8 ++ .../Zenject/Source/Util/ZenUtilInternal.cs | 8 ++ .../Zenject/Source/Util/ZenjectException.cs | 8 ++ .../Zenject/Source/Util/ZenjectSceneLoader.cs | 8 ++ ...enjectStateMachineBehaviourAutoInjecter.cs | 8 ++ .../Zenject/Source/Validation/IValidatable.cs | 8 ++ .../Source/Validation/ValidationMarker.cs | 8 ++ .../_Scripts/Mono/Logic/Base/ObjectsPools.cs | 10 ++- .../_Scripts/Mono/Logic/Base/TableViewBase.cs | 10 ++- .../_Scripts/Mono/Logic/Boot/BootInstaller.cs | 10 ++- .../Facts/FactItem/FactItemController.cs | 10 ++- .../Logic/Facts/FactItem/FactItemFactory.cs | 10 ++- .../Logic/Facts/FactItem/FactItemModel.cs | 10 ++- .../Mono/Logic/Facts/FactItem/FactItemView.cs | 10 ++- .../Facts/FactPopUp/FactPopUpController.cs | 10 ++- .../Logic/Facts/FactPopUp/FactPopUpManager.cs | 10 ++- .../Logic/Facts/FactPopUp/FactPopUpModel.cs | 10 ++- .../Logic/Facts/FactPopUp/FactPopUpView.cs | 10 ++- .../Facts/FactTable/FactTableController.cs | 10 ++- .../Logic/Facts/FactTable/FactTableManager.cs | 10 ++- .../Logic/Facts/FactTable/FactTableModel.cs | 10 ++- .../Logic/Facts/FactTable/FactTableView.cs | 10 ++- .../ForecastItem/ForecastItemController.cs | 10 ++- .../ForecastItem/ForecastItemFactory.cs | 10 ++- .../ForecastItem/ForecastItemModel.cs | 10 ++- .../Forecast/ForecastItem/ForecastItemView.cs | 10 ++- .../ForecastTable/ForecastTableController.cs | 10 ++- .../ForecastTable/ForecastTableManager.cs | 10 ++- .../ForecastTable/ForecastTableModel.cs | 10 ++- .../ForecastTable/ForecastTableView.cs | 10 ++- .../Addressables/AddressableService.cs | 10 ++- .../Services/Net/Data/INetDataService.cs | 10 ++- .../Net/Data/Implements/NetDataService.cs | 10 ++- .../Net/Facts/Components/FactAttributes.cs | 10 ++- .../Net/Facts/Components/FactContent.cs | 10 ++- .../Net/Facts/Components/FactsContent.cs | 10 ++- .../Components/Responses/FactApiResponse.cs | 10 ++- .../Components/Responses/FactsApiResponse.cs | 10 ++- .../Services/Net/Facts/INetFactsService.cs | 10 ++- .../Net/Facts/implements/NetFactsService.cs | 10 ++- .../Components/ForecastPeriodContent.cs | 10 ++- .../Forecast/Components/ForecastsContent.cs | 10 ++- .../Responses/ForecastApiResponse.cs | 10 ++- .../Net/Forecast/INetForecastService.cs | 10 ++- .../Forecast/Implements/NetForecastService.cs | 10 ++- .../Mono/Logic/Services/Net/NetService.cs | 10 ++- .../_Scripts/Mono/UI/NavigateController.cs | 20 +++-- ...ework,Version=v4.7.1.AssemblyAttributes.cs | 8 ++ Unity.gitignore | 73 ------------------ 860 files changed, 7279 insertions(+), 427 deletions(-) create mode 100644 .gitignore delete mode 100644 Unity.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f57e8ac --- /dev/null +++ b/.gitignore @@ -0,0 +1,75 @@ +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore +# +pre_commit.ps1 +pre_commit.log +Test_Dvurechensky/Media/ +Test_Dvurechensky/[Ll]ibrary/ +Test_Dvurechensky/[Tt]emp/ +Test_Dvurechensky/[Oo]bj/ +Test_Dvurechensky/[Bb]uild/ +Test_Dvurechensky/[Bb]uilds/ +Test_Dvurechensky/[Ll]ogs/ +Test_Dvurechensky/[Uu]ser[Ss]ettings/ + +# MemoryCaptures can get excessive in size. +# They also could contain extremely sensitive data +Test_Dvurechensky/[Mm]emoryCaptures/ + +# Recordings can get excessive in size +Test_Dvurechensky/[Rr]ecordings/ + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +Test_Dvurechensky/[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +Test_Dvurechensky/.vs/ + +# Gradle cache directory +Test_Dvurechensky/.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +Test_Dvurechensky/ExportedObj/ +Test_Dvurechensky/.consulo/ +Test_Dvurechensky/*.csproj +Test_Dvurechensky/*.unityproj +Test_Dvurechensky/*.sln +Test_Dvurechensky/*.suo +Test_Dvurechensky/*.tmp +Test_Dvurechensky/*.user +Test_Dvurechensky/*.userprefs +Test_Dvurechensky/*.pidb +Test_Dvurechensky/*.booproj +Test_Dvurechensky/*.svd +Test_Dvurechensky/*.pdb +Test_Dvurechensky/*.mdb +Test_Dvurechensky/*.opendb +Test_Dvurechensky/*.VC.db + +# Unity3D generated meta files +Test_Dvurechensky/*.pidb.meta +Test_Dvurechensky/*.pdb.meta +Test_Dvurechensky/*.mdb.meta + +# Unity3D generated file on crash reports +Test_Dvurechensky/sysinfo.txt + +# Builds +Test_Dvurechensky/*.apk +Test_Dvurechensky/*.aab +Test_Dvurechensky/*.unitypackage +Test_Dvurechensky/*.app + +# Crashlytics generated file +Test_Dvurechensky/crashlytics-build.properties + +# Packed Addressables +Test_Dvurechensky//[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* + +# Temporary auto-generated Android Assets +Test_Dvurechensky//[Aa]ssets/[Ss]treamingAssets/aa.meta +Test_Dvurechensky//[Aa]ssets/[Ss]treamingAssets/aa/* diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs index 0c629da..dcb3c35 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample01_ObservableWWW.cs @@ -1,4 +1,12 @@ -#if !(UNITY_METRO || UNITY_WP8) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !(UNITY_METRO || UNITY_WP8) #if UNITY_2018_3_OR_NEWER #pragma warning disable CS0618 diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs index c054aed..dbb5f95 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample02_ObservableTriggers.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; using UniRx.Triggers; // Triggers Namepsace using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample03_GameObjectAsObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample03_GameObjectAsObservable.cs index 2c0d0e4..c0d4e62 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample03_GameObjectAsObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample03_GameObjectAsObservable.cs @@ -1,4 +1,12 @@ -#if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_METRO) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_METRO) using UnityEngine; using UniRx.Triggers; // for enable gameObject.EventAsObservbale() diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample04_ConvertFromUnityCallback.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample04_ConvertFromUnityCallback.cs index 549d8c2..d7fc2f6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample04_ConvertFromUnityCallback.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample04_ConvertFromUnityCallback.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace UniRx.Examples diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs index 8c5a37a..1f92af2 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample05_ConvertFromCoroutine.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Threading; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs index e7ec1da..c4cb168 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample06_ConvertToCoroutine.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample07_OrchestratIEnumerator.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample07_OrchestratIEnumerator.cs index fa0fcdc..25d1e8a 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample07_OrchestratIEnumerator.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample07_OrchestratIEnumerator.cs @@ -1,4 +1,12 @@ -#pragma warning disable 0168 +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#pragma warning disable 0168 #pragma warning disable 0219 using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs index 1c880ed..4fc9fb3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample08_DetectDoubleClick.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs index 8ccd1db..123ee41 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample09_EventHandling.cs @@ -1,4 +1,12 @@ -#pragma warning disable 0067 +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#pragma warning disable 0067 using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs index b2cafef..6b84d07 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample10_MainThreadDispatcher.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample11_Logger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample11_Logger.cs index 8de54d5..13f8756 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample11_Logger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample11_Logger.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using UniRx.Diagnostics; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs index e1e7d56..2a01f17 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample12_ReactiveProperty.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs index 159e932..4981c39 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Examples/Sample13_ToDoApp.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Asynchronous/WebRequestExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Asynchronous/WebRequestExtensions.cs index b493bc3..e11c1a3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Asynchronous/WebRequestExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Asynchronous/WebRequestExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs index 4069a84..bf07230 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/BooleanDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CancellationDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CancellationDisposable.cs index abf2189..82f9eba 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CancellationDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CancellationDisposable.cs @@ -1,4 +1,12 @@ -// original code from GitHub Reactive-Extensions/Rx.NET +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// original code from GitHub Reactive-Extensions/Rx.NET // some modified. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CompositeDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CompositeDisposable.cs index 8b0841e..6b0b6d2 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CompositeDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/CompositeDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; // using System.Linq; do not use LINQ using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DictionaryDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DictionaryDisposable.cs index 48d0d54..784c14e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DictionaryDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DictionaryDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs index 7999ca2..31fc97d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/Disposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DisposableExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DisposableExtensions.cs index 24b9691..0cf51f1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DisposableExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/DisposableExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs index fd7fce5..af269da 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ICancelable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/MultipleAssignmentDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/MultipleAssignmentDisposable.cs index 499805f..aeaeecd 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/MultipleAssignmentDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/MultipleAssignmentDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs index 354627a..4f4ee42 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/RefCountDisposable.cs @@ -1,4 +1,12 @@ -// This code is borrwed from Rx Official and some modified. +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// This code is borrwed from Rx Official and some modified. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ScheduledDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ScheduledDisposable.cs index 1232493..fb01e88 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ScheduledDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/ScheduledDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Threading; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs index cb19e6e..618bdca 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SerialDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SingleAssignmentDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SingleAssignmentDisposable.cs index 53c9216..761c8a8 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SingleAssignmentDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/SingleAssignmentDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/StableCompositeDisposable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/StableCompositeDisposable.cs index 58633b1..3f41357 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/StableCompositeDisposable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Disposables/StableCompositeDisposable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Threading; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/EventPattern.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/EventPattern.cs index b5eeadd..205f9f5 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/EventPattern.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/EventPattern.cs @@ -1,4 +1,12 @@ -// original code from rx.codeplex.com +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// original code from rx.codeplex.com // some modified. /* ------------------ */ diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs index 31564fb..ece11ef 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/AscynLock.cs @@ -1,4 +1,12 @@ -// this code is borrowed from RxOfficial(rx.codeplex.com) and modified +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// this code is borrowed from RxOfficial(rx.codeplex.com) and modified using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/CancellableTaskCompletionSource.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/CancellableTaskCompletionSource.cs index 7e1e686..02fe7e3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/CancellableTaskCompletionSource.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/CancellableTaskCompletionSource.cs @@ -1,4 +1,12 @@ -#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs index 39a7a4c..48199d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ExceptionExtensions.cs @@ -1,4 +1,12 @@ -namespace UniRx.InternalUtil +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +namespace UniRx.InternalUtil { using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs index ef6998f..dc77f71 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ImmutableList.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.InternalUtil { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs index 5ad1afc..9722daa 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ListObserver.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs index 8b78097..c769cec 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/MicroCoroutine.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs index 0f16eea..6b0b48f 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PriorityQueue.cs @@ -1,4 +1,12 @@ -// this code is borrowed from RxOfficial(rx.codeplex.com) and modified +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// this code is borrowed from RxOfficial(rx.codeplex.com) and modified using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs index 9662f29..5ffdfef 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/PromiseHelper.cs @@ -1,4 +1,12 @@ -#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs index 1717fff..cf3d7cb 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ScheduledItem.cs @@ -1,4 +1,12 @@ -// this code is borrowed from RxOfficial(rx.codeplex.com) and modified +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// this code is borrowed from RxOfficial(rx.codeplex.com) and modified // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ThreadSafeQueueWorker.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ThreadSafeQueueWorker.cs index 3d1243b..c4c26b0 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ThreadSafeQueueWorker.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/ThreadSafeQueueWorker.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.InternalUtil { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/UnityEqualityComparer.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/UnityEqualityComparer.cs index 98abdf1..275efa6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/UnityEqualityComparer.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/InternalUtil/UnityEqualityComparer.cs @@ -1,4 +1,12 @@ -#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member #endif diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notification.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notification.cs index 25f8f1a..bdea088 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notification.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notification.cs @@ -1,4 +1,12 @@ -// original code from rx.codeplex.com +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// original code from rx.codeplex.com // some modified. /* ------------------ */ diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs index bc23897..770b0a6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/BooleanNotifier.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs index 8b4a006..795d280 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/CountNotifier.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs index a951831..7da7f47 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/MessageBroker.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.InternalUtil; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs index 649dcbc..d7d9c5c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Notifiers/ScheduledNotifier.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs index da0dff2..660bd91 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Aggregate.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs index 1040e0a..b58cbab 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Awaiter.cs @@ -1,4 +1,12 @@ -#if (NET_4_6 || NET_STANDARD_2_0) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if (NET_4_6 || NET_STANDARD_2_0) using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Binding.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Binding.cs index 7b75ed8..ab2b7e1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Binding.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Binding.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs index ebaa402..c3995d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Blocking.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs index cdf5f6d..b2a535e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concatenate.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs index 89bd971..05e7774 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Concurrency.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs index 461d523..719db75 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Conversions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Creation.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Creation.cs index a13b51c..a54c772 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Creation.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Creation.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs index 8faf6dc..169c340 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.ErrorHandling.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Events.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Events.cs index 305b13f..bc7f1bc 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Events.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Events.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs index 0a04bfa..26185c7 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.FromAsync.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Joins.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Joins.cs index 93588b5..4d15ab8 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Joins.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Joins.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Paging.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Paging.cs index 36f8e16..d25c804 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Paging.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Paging.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UniRx.InternalUtil; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Time.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Time.cs index 1477d63..f658660 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Time.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.Time.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.cs index 1f5d10a..71c28f1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Threading; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observer.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observer.cs index 47efd51..eef1d45 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observer.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Observer.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Threading; using UniRx.InternalUtil; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs index 3edf634..ed8c283 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Aggregate.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs index 6f48a9d..b7c161d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Amb.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs index 9b3fa5a..b5537e4 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsObservable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsSingleUnitObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsSingleUnitObservable.cs index 1672e81..93a2d09 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsSingleUnitObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsSingleUnitObservable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs index ffc8cde..7bad9d5 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/AsUnitObservable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs index ddc6354..6f30a78 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Buffer.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Cast.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Cast.cs index 92f1e4c..718c9f6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Cast.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Cast.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Catch.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Catch.cs index 9790969..ce1e7fb 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Catch.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Catch.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs index ac253ad..b71b9ed 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/CombineLatest.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs index 6b6bf57..f4d7e06 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Concat.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs index ee46b3a..cd96aea 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ContinueWith.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Create.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Create.cs index f3e46a5..3085716 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Create.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Create.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs index ef3001b..33b8b3d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DefaultIfEmpty.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Defer.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Defer.cs index b2a88f8..b68878d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Defer.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Defer.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Delay.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Delay.cs index f4a6a5b..362e7aa 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Delay.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Delay.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs index 971293c..121a1c1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DelaySubscription.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs index 620139c..4a3f56f 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Dematerialize.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs index c9151c1..c52b1c4 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Distinct.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs index f6d9b10..5bb5309 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/DistinctUntilChanged.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Do.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Do.cs index 472bfdb..292b12d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Do.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Do.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Empty.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Empty.cs index cefcc0b..1dd51bb 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Empty.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Empty.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Finally.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Finally.cs index fb4ee65..9ceb55b 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Finally.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Finally.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/First.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/First.cs index 220a986..6b2059a 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/First.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/First.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs index 7a8aecf..f7c3880 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ForEachAsync.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs index d137725..2a54750 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/FromEvent.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs index 60d6349..b8769a2 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/GroupBy.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs index f8cec0b..fa0936d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/IgnoreElements.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Last.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Last.cs index 7817286..f791681 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Last.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Last.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs index 5c9d108..730709c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Materialize.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Merge.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Merge.cs index 9221ad6..ad04d6c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Merge.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Merge.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Never.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Never.cs index ad6a778..22298a9 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Never.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Never.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs index b8f02f1..231f8aa 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ObserveOn.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OfType.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OfType.cs index 76857f8..619ebdd 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OfType.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OfType.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs index e00c864..8b005dc 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObservableBase.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs index 725842c..75605dc 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/OperatorObserverBase.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Threading; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs index 4b9bccc..8d5f745 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/PairWise.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Range.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Range.cs index b96da8e..0eb45f6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Range.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Range.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs index 4928706..bdba664 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RefCount.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs index 4d519f5..f253166 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Repeat.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs index 4b4a0d9..f00118c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/RepeatSafe.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Return.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Return.cs index 45167c7..6279317 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Return.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Return.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs index 7c73de7..f325edf 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Sample.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Scan.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Scan.cs index 417222a..254d750 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Scan.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Scan.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Select.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Select.cs index ec45e64..76d6369 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Select.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Select.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs index a199692..0d67bdc 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectMany.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs index fd768e7..f079889 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SelectWhere.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Single.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Single.cs index a7d828f..587f85f 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Single.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Single.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Skip.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Skip.cs index 39cf4a0..2ddc8c0 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Skip.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Skip.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs index 21e6484..e846093 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipUntil.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs index c68c4e3..36a208e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SkipWhile.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Start.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Start.cs index 72afaa5..7edc476 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Start.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Start.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs index 877fad7..73932b4 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/StartWith.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs index 75025f2..7da6057 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SubscribeOn.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Switch.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Switch.cs index 6e0d22b..fbc5c9b 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Switch.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Switch.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs index f39e0dd..18b8c10 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Synchronize.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs index 6bf8d2e..f9aa335 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/SynchronizedObserver.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Take.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Take.cs index 3430888..fbd6f0b 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Take.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Take.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.Operators; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs index 95009a7..296b961 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeLast.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.Operators; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs index dab95d0..c079571 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeUntil.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs index 99b4de4..efabd28 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TakeWhile.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs index 23a1c39..17e81b2 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throttle.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs index e3a36df..8327165 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ThrottleFirst.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throw.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throw.cs index ba618c8..1db0cc5 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throw.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Throw.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs index e28d672..91f37c7 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/TimeInterval.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs index 541dd74..13b9408 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timeout.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs index b2f1f1a..c378493 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timer.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs index c81ce1a..34f403c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Timestamp.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs index 6f92697..07cb552 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToArray.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToList.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToList.cs index df0bbd9..1448e48 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToList.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToList.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs index 6adaecd..02ba426 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ToObservable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Wait.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Wait.cs index abf77f7..3142efe 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Wait.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Wait.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.InternalUtil; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs index 88bcccc..c447a27 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhenAll.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Where.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Where.cs index 9faf62d..810c67b 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Where.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Where.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs index 72493ff..5177a93 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WhereSelect.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs index 47d7d25..634579d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/WithLatestFrom.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Zip.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Zip.cs index 1d66edc..e01efc3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Zip.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/Zip.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs index 424d421..9eaf861 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Operators/ZipLatest.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Pair.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Pair.cs index f511af0..899498a 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Pair.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Pair.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/CurrentThreadScheduler.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/CurrentThreadScheduler.cs index 52f1028..4d85aa7 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/CurrentThreadScheduler.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/CurrentThreadScheduler.cs @@ -1,4 +1,12 @@ -// this code is borrowed from RxOfficial(rx.codeplex.com) and modified +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// this code is borrowed from RxOfficial(rx.codeplex.com) and modified // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs index 71c9e51..dc5927b 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/IScheduler.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ImmediateScheduler.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ImmediateScheduler.cs index b41e245..f221922 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ImmediateScheduler.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ImmediateScheduler.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs index a9f63a1..8988212 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/Scheduler.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ThreadPoolScheduler.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ThreadPoolScheduler.cs index 3a12b0a..9bbfdc8 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ThreadPoolScheduler.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Schedulers/ThreadPoolScheduler.cs @@ -1,4 +1,12 @@ -#if !UNITY_METRO +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !UNITY_METRO using System; using System.Collections; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs index 98b3086..a62960c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/AsyncSubject.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.InternalUtil; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs index 028c783..6f6b6a0 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/BehaviorSubject.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UniRx.InternalUtil; namespace UniRx diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ConnectableObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ConnectableObservable.cs index 63862cb..de8e50d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ConnectableObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ConnectableObservable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs index 4d33f18..06dd23e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ISubject.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs index 59d0cb6..0a21cde 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/ReplaySubject.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.InternalUtil; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs index 8fa7df1..2529527 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/Subject.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UniRx.InternalUtil; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs index 4cbc9a7..9f6564d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Subjects/SubjectExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObservable.cs index 77516f5..cd8777d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObservable.cs @@ -1,4 +1,12 @@ -// defined from .NET Framework 4.0 and NETFX_CORE +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// defined from .NET Framework 4.0 and NETFX_CORE using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObserver.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObserver.cs index bbc213f..303da7f 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObserver.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IObserver.cs @@ -1,4 +1,12 @@ -// defined from .NET Framework 4.0 and NETFX_CORE +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// defined from .NET Framework 4.0 and NETFX_CORE #if !(NETFX_CORE || NET_4_6 || NET_STANDARD_2_0 || UNITY_WSA_10_0) diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs index 124e4a0..4377ccc 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IOptimizedObservable.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IProgress.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IProgress.cs index 7764ec7..d89a00e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IProgress.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/IProgress.cs @@ -1,4 +1,12 @@ -// defined from .NET Framework 4.5 and NETFX_CORE +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// defined from .NET Framework 4.5 and NETFX_CORE #if !(NETFX_CORE || NET_4_6 || NET_STANDARD_2_0 || UNITY_WSA_10_0) diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Tuple.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Tuple.cs index 47e04e1..007f330 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Tuple.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Tuple.cs @@ -1,4 +1,12 @@ -// defined from .NET Framework 4.0 and NETFX_CORE +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// defined from .NET Framework 4.0 and NETFX_CORE // This code is basaed from mono/mcs, but some performance modified // 1. class to struct // 2. implements IEquatable diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Unit.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Unit.cs index 90b71eb..22ea175 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Unit.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/System/Unit.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Tasks/TaskObservableExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Tasks/TaskObservableExtensions.cs index d5a7970..c606f6f 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Tasks/TaskObservableExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Tasks/TaskObservableExtensions.cs @@ -1,4 +1,12 @@ -// this code is borrowed from RxOfficial(rx.codeplex.com) and modified +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// this code is borrowed from RxOfficial(rx.codeplex.com) and modified #if (NET_4_6 || NET_STANDARD_2_0) diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/TimeInterval.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/TimeInterval.cs index e43e79e..50d3601 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/TimeInterval.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/TimeInterval.cs @@ -1,4 +1,12 @@ -// original code from rx.codeplex.com +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// original code from rx.codeplex.com /* ------------------ */ diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Timestamped.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Timestamped.cs index cc409d2..02749be 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Timestamped.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/Timestamped.cs @@ -1,4 +1,12 @@ -// original code from rx.codeplex.com +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// original code from rx.codeplex.com /* ------------------ */ diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/AsyncOperationExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/AsyncOperationExtensions.cs index 996f160..37aa8ff 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/AsyncOperationExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/AsyncOperationExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Threading; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CancellationToken.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CancellationToken.cs index 0384ba6..8fac700 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CancellationToken.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CancellationToken.cs @@ -1,4 +1,12 @@ -#if !(NETFX_CORE || NET_4_6 || NET_STANDARD_2_0 || UNITY_WSA_10_0) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !(NETFX_CORE || NET_4_6 || NET_STANDARD_2_0 || UNITY_WSA_10_0) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CoroutineAsyncBridge.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CoroutineAsyncBridge.cs index c2d8ee8..bb13d64 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CoroutineAsyncBridge.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/CoroutineAsyncBridge.cs @@ -1,4 +1,12 @@ -#if (NET_4_6 || NET_STANDARD_2_0) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if (NET_4_6 || NET_STANDARD_2_0) using System; using System.Collections; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntry.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntry.cs index d7c5d57..df84cb8 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntry.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntry.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntryExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntryExtensions.cs index d70cc9d..9868003 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntryExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/LogEntryExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/Logger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/Logger.cs index 9123bca..f98cd33 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/Logger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/Logger.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableDebugExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableDebugExtensions.cs index f200681..d3ee0fd 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableDebugExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableDebugExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Diagnostics { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableLogger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableLogger.cs index 44913a7..62d21ad 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableLogger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/ObservableLogger.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/UnityDebugSink.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/UnityDebugSink.cs index ecaf327..1a6b5e9 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/UnityDebugSink.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Diagnostics/UnityDebugSink.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Text; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/FrameInterval.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/FrameInterval.cs index 8d1333c..f5f0cb3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/FrameInterval.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/FrameInterval.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Globalization; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectableReactiveProperty.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectableReactiveProperty.cs index ac54988..d93d5ff 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectableReactiveProperty.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectableReactiveProperty.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UniRx.InternalUtil; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectorDisplayDrawer.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectorDisplayDrawer.cs index 9dd4316..478b36d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectorDisplayDrawer.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/InspectorDisplayDrawer.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Reflection; using UnityEngine; using System.Text.RegularExpressions; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/LifetimeDisposableExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/LifetimeDisposableExtensions.cs index dd65fe2..709d0d0 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/LifetimeDisposableExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/LifetimeDisposableExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using UniRx.Triggers; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadDispatcher.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadDispatcher.cs index 91cc8c4..ea37fd0 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadDispatcher.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadDispatcher.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5_0 || UNITY_5_1 || UNITY_5_2) #define SupportCustomYieldInstruction #endif diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadScheduler.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadScheduler.cs index 03de6f3..326cb53 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadScheduler.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/MainThreadScheduler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Observable.Unity.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Observable.Unity.cs index 9090a6f..0390967 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Observable.Unity.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Observable.Unity.cs @@ -1,4 +1,12 @@ -#if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5_0 || UNITY_5_1 || UNITY_5_2) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5 || UNITY_4_6 || UNITY_5_0 || UNITY_5_1 || UNITY_5_2) #define SupportCustomYieldInstruction #endif diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObservableWWW.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObservableWWW.cs index e1bc7d7..94ab3f3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObservableWWW.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObservableWWW.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObserveExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObserveExtensions.cs index a272623..76a6ed2 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObserveExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ObserveExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Threading; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/BatchFrame.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/BatchFrame.cs index 638d6f4..c5f5460 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/BatchFrame.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/BatchFrame.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; namespace UniRx.Operators diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrame.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrame.cs index a934ea8..fb62b3b 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrame.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrame.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrameSubscription.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrameSubscription.cs index 2132b4a..50cda2c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrameSubscription.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/DelayFrameSubscription.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; #if UniRxLibrary using UnityObservable = UniRx.ObservableUnity; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameInterval.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameInterval.cs index df0900d..37f8cd4 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameInterval.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameInterval.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameTimeInterval.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameTimeInterval.cs index 0ebaf54..a47cb8e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameTimeInterval.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FrameTimeInterval.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FromCoroutine.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FromCoroutine.cs index 39515f2..7d7fdb0 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FromCoroutine.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/FromCoroutine.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Threading; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/RepeatUntil.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/RepeatUntil.cs index 67dba77..9544591 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/RepeatUntil.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/RepeatUntil.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SampleFrame.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SampleFrame.cs index aebfd65..9dc9bef 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SampleFrame.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SampleFrame.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; #if UniRxLibrary using UnityObservable = UniRx.ObservableUnity; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SubscribeOnMainThread.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SubscribeOnMainThread.cs index ba6d06e..b828326 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SubscribeOnMainThread.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/SubscribeOnMainThread.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; namespace UniRx.Operators { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFirstFrame.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFirstFrame.cs index 6b9ccbc..ed0316a 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFirstFrame.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFirstFrame.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; #if UniRxLibrary using UnityObservable = UniRx.ObservableUnity; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFrame.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFrame.cs index 6e3634a..d8013a1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFrame.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/ThrottleFrame.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; #if UniRxLibrary using UnityObservable = UniRx.ObservableUnity; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/TimeoutFrame.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/TimeoutFrame.cs index eada0e5..5b37626 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/TimeoutFrame.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Operators/TimeoutFrame.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; #if UniRxLibrary using UnityObservable = UniRx.ObservableUnity; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCollection.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCollection.cs index 12471d0..c152ab1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCollection.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCollection.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Collections.ObjectModel; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCommand.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCommand.cs index 18471bf..2ee0c0c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCommand.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveCommand.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Threading; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveDictionary.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveDictionary.cs index 4b928e3..be42db9 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveDictionary.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveDictionary.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveProperty.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveProperty.cs index d67a81e..a6b00e4 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveProperty.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ReactiveProperty.cs @@ -1,4 +1,12 @@ -#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6)) #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member #endif diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ScenePlaybackDetector.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ScenePlaybackDetector.cs index ba1b4ab..8c3eaf5 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ScenePlaybackDetector.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/ScenePlaybackDetector.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if UNITY_EDITOR using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Toolkit/ObjectPool.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Toolkit/ObjectPool.cs index 52e91bc..9b9d354 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Toolkit/ObjectPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Toolkit/ObjectPool.cs @@ -1,4 +1,12 @@ -#if UNITY_5_3_OR_NEWER +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if UNITY_5_3_OR_NEWER using System; using System.Collections; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableAnimatorTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableAnimatorTrigger.cs index 4628d03..67365e1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableAnimatorTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableAnimatorTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableBeginDragTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableBeginDragTrigger.cs index fefc213..5a7c7d5 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableBeginDragTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableBeginDragTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCancelTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCancelTrigger.cs index dac84da..7b6fcd1 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCancelTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCancelTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCanvasGroupChangedTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCanvasGroupChangedTrigger.cs index 74b6b04..f4b8030 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCanvasGroupChangedTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCanvasGroupChangedTrigger.cs @@ -1,4 +1,12 @@ -// after uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// after uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollision2DTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollision2DTrigger.cs index e4936f5..5ab19db 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollision2DTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollision2DTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollisionTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollisionTrigger.cs index db7dd5e..8e909a6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollisionTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableCollisionTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDeselectTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDeselectTrigger.cs index 91465c1..dadb51e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDeselectTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDeselectTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDestroyTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDestroyTrigger.cs index 3eceb9d..2cedc6c 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDestroyTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDestroyTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDragTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDragTrigger.cs index 6dff39f..e73d74f 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDragTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDragTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDropTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDropTrigger.cs index 7d26345..c32421a 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDropTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableDropTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEnableTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEnableTrigger.cs index 47df63e..29672fe 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEnableTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEnableTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEndDragTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEndDragTrigger.cs index 8d68135..23c4834 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEndDragTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEndDragTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEventTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEventTrigger.cs index 3c73eb1..21d1485 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEventTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableEventTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableFixedUpdateTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableFixedUpdateTrigger.cs index 897170c..7302f8e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableFixedUpdateTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableFixedUpdateTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableInitializePotentialDragTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableInitializePotentialDragTrigger.cs index 06db037..e9a6937 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableInitializePotentialDragTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableInitializePotentialDragTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableJointTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableJointTrigger.cs index 8e4c39f..94f019b 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableJointTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableJointTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableLateUpdateTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableLateUpdateTrigger.cs index 21c61c7..9397b86 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableLateUpdateTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableLateUpdateTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMouseTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMouseTrigger.cs index 89108b8..b4b08b7 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMouseTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMouseTrigger.cs @@ -1,4 +1,12 @@ -#if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_METRO) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !(UNITY_IPHONE || UNITY_ANDROID || UNITY_METRO) using System; // require keep for Windows Universal App using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMoveTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMoveTrigger.cs index bd05d14..749f1aa 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMoveTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableMoveTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableParticleTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableParticleTrigger.cs index f8acc26..068c247 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableParticleTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableParticleTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerClickTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerClickTrigger.cs index 1cac1d9..f6aeb89 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerClickTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerClickTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerDownTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerDownTrigger.cs index 4ff2dff..264dd25 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerDownTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerDownTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerEnterTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerEnterTrigger.cs index 615a83c..3eb3ac3 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerEnterTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerEnterTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerExitTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerExitTrigger.cs index 90d9045..1372785 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerExitTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerExitTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerUpTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerUpTrigger.cs index 877e63a..3ef8a44 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerUpTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservablePointerUpTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableRectTransformTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableRectTransformTrigger.cs index 063015c..d57041e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableRectTransformTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableRectTransformTrigger.cs @@ -1,4 +1,12 @@ -// after uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// after uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableScrollTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableScrollTrigger.cs index dd60ffd..de8244e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableScrollTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableScrollTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSelectTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSelectTrigger.cs index d80579b..4401955 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSelectTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSelectTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableStateMachineTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableStateMachineTrigger.cs index cd38afe..27414c8 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableStateMachineTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableStateMachineTrigger.cs @@ -1,4 +1,12 @@ -// over Unity5 added StateMachineBehaviour +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// over Unity5 added StateMachineBehaviour #if !(UNITY_4_7 || UNITY_4_6 || UNITY_4_5 || UNITY_4_4 || UNITY_4_3 || UNITY_4_2 || UNITY_4_1 || UNITY_4_0_1 || UNITY_4_0 || UNITY_3_5 || UNITY_3_4 || UNITY_3_3 || UNITY_3_2 || UNITY_3_1 || UNITY_3_0_0 || UNITY_3_0 || UNITY_2_6_1 || UNITY_2_6) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSubmitTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSubmitTrigger.cs index 8c3d6dd..a57d369 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSubmitTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableSubmitTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTransformChangedTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTransformChangedTrigger.cs index c560241..b16ead6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTransformChangedTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTransformChangedTrigger.cs @@ -1,4 +1,12 @@ -// after uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// after uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTrigger2DTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTrigger2DTrigger.cs index 565a40d..6741903 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTrigger2DTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTrigger2DTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerBase.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerBase.cs index ddda78f..9d1a7c8 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerBase.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.Component.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.Component.cs index 1c90e2e..6584cf6 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.Component.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.Component.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.cs index fd2009f..ded8c3f 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerExtensions.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerTrigger.cs index aa4ddea..93cd16d 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableTriggerTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateSelectedTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateSelectedTrigger.cs index bc9b624..8a6ff9a 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateSelectedTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateSelectedTrigger.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; // require keep for Windows Universal App diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateTrigger.cs index cbafdba..0d91c97 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableUpdateTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableVisibleTrigger.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableVisibleTrigger.cs index f9e5b45..f07de67 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableVisibleTrigger.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/Triggers/ObservableVisibleTrigger.cs @@ -1,4 +1,12 @@ -using System; // require keep for Windows Universal App +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; // require keep for Windows Universal App using UnityEngine; namespace UniRx.Triggers diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityEventExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityEventExtensions.cs index 1476f4d..d5fb6e5 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityEventExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityEventExtensions.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityGraphicExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityGraphicExtensions.cs index 3e5ef21..fafbe95 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityGraphicExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityGraphicExtensions.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityUIComponentExtensions.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityUIComponentExtensions.cs index 8a02cb1..418f190 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityUIComponentExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/UnityUIComponentExtensions.cs @@ -1,4 +1,12 @@ -// for uGUI(from 4.6) +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +// for uGUI(from 4.6) #if !(UNITY_4_0 || UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_4 || UNITY_4_5) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/YieldInstructionCache.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/YieldInstructionCache.cs index 60d3a5e..45a7815 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/YieldInstructionCache.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityEngineBridge/YieldInstructionCache.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace UniRx { diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs index 376d5f5..f09512e 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/Thread.cs @@ -1,4 +1,12 @@ -#if UNITY_METRO +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if UNITY_METRO using System; using System.Collections; diff --git a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/ThreadPoolScheduler_UnityWinRT.cs b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/ThreadPoolScheduler_UnityWinRT.cs index cdbd1d9..4fba571 100644 --- a/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/ThreadPoolScheduler_UnityWinRT.cs +++ b/Test_Dvurechensky/Assets/Plugins/UniRx/Scripts/UnityWinRTBridge/ThreadPoolScheduler_UnityWinRT.cs @@ -1,4 +1,12 @@ -#if UNITY_METRO +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if UNITY_METRO using System; using System.Collections; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo.cs index 8e54c36..a5bbc99 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.DiContainerMethods { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo2.cs index 7c8daa6..1a038a7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Foo2.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.DiContainerMethods { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp.cs index 55079c5..e7c3439 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp.cs @@ -1,4 +1,12 @@ -using ModestTree; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using ModestTree; using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp2.cs index 690b4f9..9f1e4a7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestDiContainerMethods/Gorp2.cs @@ -1,4 +1,12 @@ -using ModestTree; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using ModestTree; using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Foo.cs index 89a7145..d9d0b44 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Foo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/FooInstaller.cs index 064c45d..555020d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/FooInstaller.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Gorp.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Gorp.cs index 180a240..099775f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Gorp.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromComponentInHierarchyGameObjectContext/Gorp.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromComponentInHierarchyGameObjectContext diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Bar.cs index aaea139..a5fea35 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Bar.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromGameObjectInstaller { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Foo.cs index 71c339f..1497b98 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromGameObjectInstaller/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromGameObjectInstaller { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Bob.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Bob.cs index 042c012..dc55245 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Bob.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Bob.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromNewScriptableObjectResource diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Foo.cs index ed3c330..2a5fadf 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromNewScriptableObjectResource/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromNewScriptableObjectResource { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bar.cs index 3c513e3..c361c07 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bar.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefab { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bob.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bob.cs index a8f263a..f40433f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bob.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Bob.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Foo.cs index 3719521..8e46f79 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefab { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Gorp.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Gorp.cs index 7136c60..2b25314 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Gorp.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Gorp.cs @@ -1,4 +1,12 @@ -using ModestTree; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using ModestTree; using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Jim.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Jim.cs index 00770f1..0f477ff 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Jim.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Jim.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf.cs index aecf00b..64674db 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefab diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf2.cs index cf72adb..97d6795 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Norf2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefab diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Qux.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Qux.cs index 4373962..1fba571 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Qux.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefab/Qux.cs @@ -1,4 +1,12 @@ -using ModestTree; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using ModestTree; using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Bar.cs index 2819e65..7e6d2e0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Bar.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefabInstaller { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Foo.cs index a065ee6..2f67e44 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabInstaller/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefabInstaller { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bar.cs index b31bc6c..3632c04 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bar.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefabResource { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bob.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bob.cs index c8b7463..4554c2c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bob.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Bob.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Foo.cs index 33c06d5..19f2b30 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefabResource { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Gorp.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Gorp.cs index cc97e80..76cd59e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Gorp.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Gorp.cs @@ -1,4 +1,12 @@ -using ModestTree; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using ModestTree; using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Jim.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Jim.cs index 63a6f28..fb71f16 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Jim.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Jim.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf.cs index 95ae8cf..39e1a45 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefabResource diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf2.cs index dc0582a..78e5c31 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Norf2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromPrefabResource diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Qux.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Qux.cs index d41daa6..c6fb5f5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Qux.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromPrefabResource/Qux.cs @@ -1,4 +1,12 @@ -using ModestTree; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using ModestTree; using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Bar.cs index 133c8b3..0534465 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Bar.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromSubContainerPrefab diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircBar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircBar.cs index 20c6468..67cf132 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircBar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircBar.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromSubContainerPrefab diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircFoo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircFoo.cs index 662fc53..89e810b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircFoo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/CircFoo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromSubContainerPrefab diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Foo.cs index a9fe4cf..676e586 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromSubContainerPrefab { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/FooInstaller.cs index 94b8ac7..21110f9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/FooInstaller.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Gorp.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Gorp.cs index bb8d339..ba6f0b9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Gorp.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefab/Gorp.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Bindings.FromSubContainerPrefab { public class Gorp diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Bar.cs index 11bc6d8..98d333c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Bar.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Bindings.FromSubContainerPrefabResource diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Foo.cs index fad0359..bb38a27 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.FromSubContainerPrefabResource { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/FooInstaller.cs index fad0e9f..349ab60 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/FooInstaller.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Gorp.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Gorp.cs index e1d18ef..06d00f2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Gorp.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestFromSubContainerPrefabResource/Gorp.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Bindings.FromSubContainerPrefabResource { public class Gorp diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestInstantiateCallback/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestInstantiateCallback/Foo.cs index f0e3f0c..497e897 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestInstantiateCallback/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Bindings/TestInstantiateCallback/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Bindings.InstantiateCallback { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo.cs index a62985f..6708527 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Factories.PrefabFactory diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo2.cs index f71f22d..6daec81 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/PrefabFactory/Foo2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Factories.PrefabFactory diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Bar.cs index 6130171..e78d1d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Bar.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Factories.BindFactory diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Foo.cs index 3cb337d..b4dc01c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactory/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Factories.BindFactory { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/Foo.cs index 52aa433..90c7423 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Factories.BindFactoryFive { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/FooInstaller.cs index 5314cb8..ebd46d9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryFive/FooInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Factories.BindFactoryFive { public class FooInstaller : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Bar.cs index 805fc1d..83b59f8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Bar.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.Factories.BindFactoryOne diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Foo.cs index 9e5c18b..90c43f1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/Foo.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.Factories.BindFactoryOne { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/FooInstaller.cs index 37c5e77..d1fadc0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Factories/TestBindFactoryOne/FooInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Factories.BindFactoryOne { public class FooInstaller : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/BarInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/BarInstaller.cs index 4a928f9..a7189d4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/BarInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/BarInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.Installers { public class BarInstaller : Installer diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/FooInstaller.cs index ec9810e..a61687a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/FooInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.Installers { public class Foo diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/QuxInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/QuxInstaller.cs index 64c431a..981e9f9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/QuxInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestInstallers/QuxInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.Installers { public class QuxInstaller : Installer diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/BarInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/BarInstaller.cs index 9223255..4091bca 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/BarInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/BarInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.MonoInstallers { public class BarInstaller : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/FooInstaller.cs index 957783a..03b7726 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/FooInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.MonoInstallers { public class Foo diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/QuxInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/QuxInstaller.cs index cae18d6..18c67c4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/QuxInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestMonoInstallers/QuxInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.MonoInstallers { public class QuxInstaller : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/BarInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/BarInstaller.cs index f969d7b..1117d26 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/BarInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/BarInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.ScriptableObjectInstallers { //[CreateAssetMenu(fileName = "BarInstaller", menuName = "Installers/BarInstaller")] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/FooInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/FooInstaller.cs index c8e13a4..bbc4f31 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/FooInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/FooInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.ScriptableObjectInstallers { public class Foo diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/QuxInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/QuxInstaller.cs index c4163bd..c61a050 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/QuxInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Installers/TestScriptableObjectInstallers/QuxInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.Installers.ScriptableObjectInstallers { //[CreateAssetMenu(fileName = "QuxInstaller", menuName = "Installers/QuxInstaller")] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestAnimationStateBehaviourInject/StateBehaviour1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestAnimationStateBehaviourInject/StateBehaviour1.cs index 93249d3..5975058 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestAnimationStateBehaviourInject/StateBehaviour1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestAnimationStateBehaviourInject/StateBehaviour1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.TestAnimationStateBehaviourInject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Bar.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Bar.cs index ef18c7f..d7b1447 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Bar.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Bar.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.AutoInjecter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Gorp.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Gorp.cs index 3583c7e..c9798f6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Gorp.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Gorp.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.AutoInjecter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Qux.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Qux.cs index 2954d25..5558b21 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Qux.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Misc/TestZenAutoInjecter/Qux.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Tests.AutoInjecter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene1Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene1Installer.cs index 7116503..4b2fba7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene1Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene1Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.AutoLoadSceneTests { public class Scene1Installer : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene2Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene2Installer.cs index 7c0a6f3..5b467c5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene2Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene2Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.AutoLoadSceneTests { public class Scene2Installer : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene3Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene3Installer.cs index ff44bef..64d2b0d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene3Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/AutoLoader/Scene3Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject.Tests.AutoLoadSceneTests diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene1Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene1Installer.cs index 342510f..7e94c5c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene1Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene1Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.DecoratorTests { public class Scene1Installer : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene2Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene2Installer.cs index 8e4572b..9b30b66 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene2Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneContractTests/Decorators/Scene2Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject.Tests.DecoratorTests diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable1.cs index 54892f2..b67e7cd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable1.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace Zenject.Tests.TestDestructionOrder diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable2.cs index 725904b..6e7f583 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable2.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace Zenject.Tests.TestDestructionOrder diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable3.cs index 2d56b2a..a880135 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooDisposable3.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace Zenject.Tests.TestDestructionOrder diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext1.cs index f0a9198..a3a3995 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext1.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.TestDestructionOrder { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext2.cs index c34e077..583a109 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext2.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.TestDestructionOrder { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext3.cs index 62dc7a6..23c2f8d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/FooMonoBehaviourUnderSceneContext3.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.Tests.TestDestructionOrder { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/ProjectInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/ProjectInstaller.cs index a179019..618255a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/ProjectInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/ProjectInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Tests.TestDestructionOrder { public class ProjectInstaller : MonoInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene1Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene1Installer.cs index e5020b2..f4a91e9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene1Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene1Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine.SceneManagement; namespace Zenject.Tests.TestDestructionOrder diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene2Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene2Installer.cs index 7de3f54..92e47af 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene2Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestDestructionOrder/Scene2Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; using UnityEngine.SceneManagement; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestSceneContextEvents/SceneContextEventsTester.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestSceneContextEvents/SceneContextEventsTester.cs index 10242db..5915ccb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestSceneContextEvents/SceneContextEventsTester.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/SceneTests/TestSceneContextEvents/SceneContextEventsTester.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestDiContainerMethods/TestDiContainerMethods.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestDiContainerMethods/TestDiContainerMethods.cs index f3c909d..56858ee 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestDiContainerMethods/TestDiContainerMethods.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestDiContainerMethods/TestDiContainerMethods.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromComponentOn.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromComponentOn.cs index 7c2a752..07e7eb8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromComponentOn.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromComponentOn.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromNewComponentOn.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromNewComponentOn.cs index c46f523..d8a00e6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromNewComponentOn.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponent/TestFromNewComponentOn.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInChildren/TestFromComponentInChildren.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInChildren/TestFromComponentInChildren.cs index 8ce1f76..a4d3be1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInChildren/TestFromComponentInChildren.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInChildren/TestFromComponentInChildren.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchy/TestFromComponentInHierarchy.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchy/TestFromComponentInHierarchy.cs index ac4a056..01bbfa8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchy/TestFromComponentInHierarchy.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchy/TestFromComponentInHierarchy.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchyGameObjectContext/TestFromComponentInHierarchyGameObjectContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchyGameObjectContext/TestFromComponentInHierarchyGameObjectContext.cs index 578f0b9..d636f75 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchyGameObjectContext/TestFromComponentInHierarchyGameObjectContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInHierarchyGameObjectContext/TestFromComponentInHierarchyGameObjectContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInParents/TestFromComponentInParents.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInParents/TestFromComponentInParents.cs index 4e0c281..5372098 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInParents/TestFromComponentInParents.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInParents/TestFromComponentInParents.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInSiblings/TestFromComponentInSiblings.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInSiblings/TestFromComponentInSiblings.cs index a2b9ddb..c129e03 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInSiblings/TestFromComponentInSiblings.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromComponentInSiblings/TestFromComponentInSiblings.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObject/TestFromGameObject.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObject/TestFromGameObject.cs index 4341ab9..4cef68b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObject/TestFromGameObject.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObject/TestFromGameObject.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObjectInstaller/TestFromGameObjectInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObjectInstaller/TestFromGameObjectInstaller.cs index a3f35fe..9b941b5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObjectInstaller/TestFromGameObjectInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromGameObjectInstaller/TestFromGameObjectInstaller.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromNewScriptableObjectResource/TestFromNewScriptableObjectResource.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromNewScriptableObjectResource/TestFromNewScriptableObjectResource.cs index 5e1804e..324e2f4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromNewScriptableObjectResource/TestFromNewScriptableObjectResource.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromNewScriptableObjectResource/TestFromNewScriptableObjectResource.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefab/TestFromPrefab.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefab/TestFromPrefab.cs index fd178fa..d67551f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefab/TestFromPrefab.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefab/TestFromPrefab.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabInstaller/TestFromPrefabInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabInstaller/TestFromPrefabInstaller.cs index 599a6d3..d449e41 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabInstaller/TestFromPrefabInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabInstaller/TestFromPrefabInstaller.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabResource/TestFromPrefabResource.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabResource/TestFromPrefabResource.cs index 5b0fcb2..2b96a97 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabResource/TestFromPrefabResource.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromPrefabResource/TestFromPrefabResource.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromResource/TestFromResource.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromResource/TestFromResource.cs index 1c1ca96..3e9fda2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromResource/TestFromResource.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromResource/TestFromResource.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSiblingComponent/TestFromSiblingComponent.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSiblingComponent/TestFromSiblingComponent.cs index 7b21d5f..4e1014a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSiblingComponent/TestFromSiblingComponent.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSiblingComponent/TestFromSiblingComponent.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefab/TestFromSubContainerPrefab.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefab/TestFromSubContainerPrefab.cs index fa26273..bc4c949 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefab/TestFromSubContainerPrefab.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefab/TestFromSubContainerPrefab.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefabResource/TestFromSubContainerPrefabResource.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefabResource/TestFromSubContainerPrefabResource.cs index 68c06cc..c7e6e8a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefabResource/TestFromSubContainerPrefabResource.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestFromSubContainerPrefabResource/TestFromSubContainerPrefabResource.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestInstantiateCallback/TestInstantiateCallback.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestInstantiateCallback/TestInstantiateCallback.cs index 083f86e..9e3b6bc 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestInstantiateCallback/TestInstantiateCallback.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestInstantiateCallback/TestInstantiateCallback.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestLazy/TestLazy.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestLazy/TestLazy.cs index 060d1d5..200879a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestLazy/TestLazy.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Bindings/TestLazy/TestLazy.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/PrefabFactory/TestPrefabFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/PrefabFactory/TestPrefabFactory.cs index e30b185..c2d3262 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/PrefabFactory/TestPrefabFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/PrefabFactory/TestPrefabFactory.cs @@ -1,4 +1,12 @@ -using System.Collections; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Collections; using ModestTree; using UnityEngine; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactory/TestBindFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactory/TestBindFactory.cs index 6769504..0984aad 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactory/TestBindFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactory/TestBindFactory.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryFive/TestBindFactoryFive.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryFive/TestBindFactoryFive.cs index ab2fde7..790930c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryFive/TestBindFactoryFive.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryFive/TestBindFactoryFive.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryOne/TestBindFactoryOne.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryOne/TestBindFactoryOne.cs index a8d5252..db5eafd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryOne/TestBindFactoryOne.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestBindFactoryOne/TestBindFactoryOne.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestMemoryPools/TestMemoryPool1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestMemoryPools/TestMemoryPool1.cs index 4d07307..d2102c3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestMemoryPools/TestMemoryPool1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Factories/TestMemoryPools/TestMemoryPool1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestInstallers/TestInstallers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestInstallers/TestInstallers.cs index 8dd9e19..99f83e6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestInstallers/TestInstallers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestInstallers/TestInstallers.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestMonoInstallers/TestMonoInstallers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestMonoInstallers/TestMonoInstallers.cs index 320ad3d..606a205 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestMonoInstallers/TestMonoInstallers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestMonoInstallers/TestMonoInstallers.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestScriptableObjectInstallers/TestScriptableObjectInstallers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestScriptableObjectInstallers/TestScriptableObjectInstallers.cs index 683a5ca..97913b4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestScriptableObjectInstallers/TestScriptableObjectInstallers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Installers/TestScriptableObjectInstallers/TestScriptableObjectInstallers.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/IntegrationTestTester/TestIntegrationTest.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/IntegrationTestTester/TestIntegrationTest.cs index 70c10a7..7cfb2bd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/IntegrationTestTester/TestIntegrationTest.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/IntegrationTestTester/TestIntegrationTest.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestAnimationStateBehaviourInject/TestAnimationStateBehaviourInject.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestAnimationStateBehaviourInject/TestAnimationStateBehaviourInject.cs index 7bf7086..8d7c40e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestAnimationStateBehaviourInject/TestAnimationStateBehaviourInject.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestAnimationStateBehaviourInject/TestAnimationStateBehaviourInject.cs @@ -1,4 +1,12 @@ - +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + + using System.Collections; using ModestTree; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/DelayedInitializeKernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/DelayedInitializeKernel.cs index d7dc170..e4f94e5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/DelayedInitializeKernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/DelayedInitializeKernel.cs @@ -1,4 +1,12 @@ -using System.Threading.Tasks; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Threading.Tasks; using Zenject; namespace Zenject.Tests.TestAnimationStateBehaviourInject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/KernelDecoratorInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/KernelDecoratorInstaller.cs index d03fa04..0a6771c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/KernelDecoratorInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/KernelDecoratorInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; using Zenject; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/TestMonoKernelDecoration.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/TestMonoKernelDecoration.cs index 28ac808..81d4504 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/TestMonoKernelDecoration.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestMonoKernelDecoration/TestMonoKernelDecoration.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestZenAutoInjecter/TestZenAutoInjecter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestZenAutoInjecter/TestZenAutoInjecter.cs index ee24216..fe8e234 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestZenAutoInjecter/TestZenAutoInjecter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Misc/TestZenAutoInjecter/TestZenAutoInjecter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Linq; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/SceneTests/TestSceneContextEvents.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/SceneTests/TestSceneContextEvents.cs index 1039eb9..75476d8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/SceneTests/TestSceneContextEvents.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/SceneTests/TestSceneContextEvents.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using UnityEngine; using UnityEngine.TestTools; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Util/FixtureUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Util/FixtureUtil.cs index f9d782c..6c39b7a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Util/FixtureUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/IntegrationTests/Tests/Util/FixtureUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if UNITY_EDITOR using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/InPlaceStableSort.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/InPlaceStableSort.cs index 38e3fb3..ac07ac3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/InPlaceStableSort.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/InPlaceStableSort.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmView.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmView.cs index c9b47bd..9ffa3c3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmView.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmView.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmWindow.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmWindow.cs index 30ec105..0f87a18 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmWindow.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/DebugWindow/MpmWindow.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/MpmSettingsInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/MpmSettingsInstaller.cs index 41ff2e9..1ea7cac 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/MpmSettingsInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/MemoryPoolMonitor/Editor/MpmSettingsInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; using UnityEditor; using Zenject; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/CecilExtensions.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/CecilExtensions.cs index f8b5f6a..e5c322c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/CecilExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/CecilExtensions.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Reflection; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/ReflectionBakingModuleEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/ReflectionBakingModuleEditor.cs index 4c4f0ac..46f1252 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/ReflectionBakingModuleEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Common/ReflectionBakingModuleEditor.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/AssemblyPathRegistry.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/AssemblyPathRegistry.cs index f5f9e97..79a8265 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/AssemblyPathRegistry.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/AssemblyPathRegistry.cs @@ -1,4 +1,12 @@ -using System.Collections.Generic; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Collections.Generic; using System.IO; using System.Linq; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingBuildObserver.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingBuildObserver.cs index c06f6dc..d15618e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingBuildObserver.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingBuildObserver.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Diagnostics; using System.IO; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingInternalUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingInternalUtil.cs index 97ae6fa..5cf514c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingInternalUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingInternalUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.IO; using System.Reflection; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingMenuItems.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingMenuItems.cs index 3edb7c7..fc55550 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingMenuItems.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ReflectionBakingMenuItems.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System.IO; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/UnityAssemblyResolver.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/UnityAssemblyResolver.cs index 3588111..8c7d5cf 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/UnityAssemblyResolver.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/UnityAssemblyResolver.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.IO; using System.Reflection; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettings.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettings.cs index 39cac55..0a271c7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettings.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettings.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettingsEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettingsEditor.cs index cb5d149..dfa735f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettingsEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/ReflectionBaking/Unity/ZenjectReflectionBakingSettingsEditor.cs @@ -1,4 +1,12 @@ -using UnityEditor; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEditor; using UnityEditorInternal; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/Asteroid.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/Asteroid.cs index 2a34948..9a06a92 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/Asteroid.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/Asteroid.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/AsteroidManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/AsteroidManager.cs index d16896c..452ca31 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/AsteroidManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Asteroid/AsteroidManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameInstaller.cs index 48fd166..5e9ec2d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameInstaller.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace Zenject.Asteroids diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameSettingsInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameSettingsInstaller.cs index dc87b38..c4f2a69 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameSettingsInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Installers/GameSettingsInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject.Asteroids diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Main/GameController.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Main/GameController.cs index 7c7c10e..9bf82bc 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Main/GameController.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Main/GameController.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/AudioHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/AudioHandler.cs index 8f3864f..ebf34e9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/AudioHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/AudioHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/GuiHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/GuiHandler.cs index 07bb6af..7e6d2e7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/GuiHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/GuiHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/LevelHelper.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/LevelHelper.cs index 96952ec..c8067ab 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/LevelHelper.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/LevelHelper.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Asteroids diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/TilingBackground.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/TilingBackground.cs index 9819164..a4fb5c2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/TilingBackground.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Misc/TilingBackground.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/Ship.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/Ship.cs index 1f52e6c..469074f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/Ship.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/Ship.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/ShipStateFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/ShipStateFactory.cs index e4f9693..920708f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/ShipStateFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/ShipStateFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject.Asteroids diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/BrokenShipFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/BrokenShipFactory.cs index 58a0a21..09b43d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/BrokenShipFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/BrokenShipFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Asteroids diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ExplosionFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ExplosionFactory.cs index 273ce80..d71950d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ExplosionFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ExplosionFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Asteroids diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipState.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipState.cs index 5c22f3f..572cff7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipState.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipState.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateDead.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateDead.cs index 909f1ef..adeff3b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateDead.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateDead.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; using Random = UnityEngine.Random; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateMoving.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateMoving.cs index fad979c..55ace90 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateMoving.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateMoving.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateWaitingToStart.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateWaitingToStart.cs index 0096090..106103d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateWaitingToStart.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Ship/States/ShipStateWaitingToStart.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/GameEvents.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/GameEvents.cs index f19a236..09e30df 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/GameEvents.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/GameEvents.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.Asteroids { public class ShipCrashedSignal diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/UnityExtensionMethods.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/UnityExtensionMethods.cs index c5afb40..57dffb9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/UnityExtensionMethods.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame1 (Beginner)/Scripts/Util/UnityExtensionMethods.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.Asteroids diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyCommonSettings.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyCommonSettings.cs index 401a6ca..f9c1ed8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyCommonSettings.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyCommonSettings.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyDeathHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyDeathHandler.cs index 4ee14ef..904f724 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyDeathHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyDeathHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyFacade.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyFacade.cs index 5541f14..f287c5a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyFacade.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyFacade.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRegistry.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRegistry.cs index 4761866..77bd3fd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRegistry.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRegistry.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRotationHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRotationHandler.cs index c1b2b4a..32aab1a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRotationHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyRotationHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyStateManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyStateManager.cs index c562f5d..d6b6613 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyStateManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyStateManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyTunables.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyTunables.cs index a781055..aedf531 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyTunables.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyTunables.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyView.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyView.cs index 4e49b20..070b31b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyView.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/EnemyView.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/GameEvents.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/GameEvents.cs index 1a36a6f..9cd634c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/GameEvents.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/GameEvents.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.SpaceFighter { public struct PlayerDiedSignal diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateAttack.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateAttack.cs index b7a7e03..62c2ff4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateAttack.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateAttack.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; using Random = UnityEngine.Random; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateFollow.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateFollow.cs index b2d2fe8..cf3cae3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateFollow.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateFollow.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; using Random = UnityEngine.Random; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateIdle.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateIdle.cs index 6a1788e..48aafc3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateIdle.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Enemy/States/EnemyStateIdle.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; using Random = UnityEngine.Random; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/EnemyInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/EnemyInstaller.cs index 46b3146..e4887d2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/EnemyInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/EnemyInstaller.cs @@ -1,4 +1,12 @@ -namespace Zenject.SpaceFighter +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +namespace Zenject.SpaceFighter { public class EnemyInstaller : Installer { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameInstaller.cs index c75ddee..5cab344 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameInstaller.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSettingsInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSettingsInstaller.cs index 5548ba5..630b9ba 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSettingsInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSettingsInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSignalsInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSignalsInstaller.cs index 453de7f..3e1a270 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSignalsInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/GameSignalsInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/PlayerInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/PlayerInstaller.cs index e599089..60cbbaa 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/PlayerInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Installers/PlayerInstaller.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/AudioPlayer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/AudioPlayer.cs index 275e307..f77d771 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/AudioPlayer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/AudioPlayer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Bullet.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Bullet.cs index 31df3f3..709ef56 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Bullet.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Bullet.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.SpaceFighter { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/ControlsDisplay.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/ControlsDisplay.cs index 0af1bab..5a31b66 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/ControlsDisplay.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/ControlsDisplay.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/EnemySpawner.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/EnemySpawner.cs index d81070e..088e863 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/EnemySpawner.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/EnemySpawner.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Explosion.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Explosion.cs index 23d6856..6038e32 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Explosion.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/Explosion.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/GameRestartHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/GameRestartHandler.cs index e7ae333..696751a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/GameRestartHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/GameRestartHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; using UnityEngine.SceneManagement; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/LevelBoundary.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/LevelBoundary.cs index e08b349..7f9c40b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/LevelBoundary.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Misc/LevelBoundary.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDamageHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDamageHandler.cs index 4126527..f54bbd5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDamageHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDamageHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDirectionHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDirectionHandler.cs index bdc3fcf..a4b44f3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDirectionHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerDirectionHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerFacade.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerFacade.cs index b13e26e..8fc81e9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerFacade.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerFacade.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; namespace Zenject.SpaceFighter { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerGui.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerGui.cs index f59d153..31bea86 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerGui.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerGui.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerHealthWatcher.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerHealthWatcher.cs index 2aedf89..dd5bc92 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerHealthWatcher.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerHealthWatcher.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputHandler.cs index d7ed169..7ccf323 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputState.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputState.cs index ae0f785..f39ea53 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputState.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerInputState.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject.SpaceFighter { public class PlayerInputState diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerModel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerModel.cs index 8e986cb..4e39c57 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerModel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerModel.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject.SpaceFighter diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerMoveHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerMoveHandler.cs index 1caa910..fd203e9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerMoveHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerMoveHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerShootHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerShootHandler.cs index f4ba788..f44d141 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerShootHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/SampleGame2 (Advanced)/Scripts/Player/PlayerShootHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalFromBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalFromBinder.cs index 31fa9ca..2611c61 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalFromBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalFromBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalIdToBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalIdToBinder.cs index 01568a4..15321c4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalIdToBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalIdToBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalToBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalToBinder.cs index 76ba5db..14ddb56 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalToBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/BindSignalToBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWithLookupWrapper.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWithLookupWrapper.cs index 61b5252..35eaf16 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWithLookupWrapper.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWithLookupWrapper.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWrapper.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWrapper.cs index bb737bd..2fbe97b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWrapper.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/BindSignal/SignalCallbackWrapper.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalAsyncTickPriorityCopyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalAsyncTickPriorityCopyBinder.cs index 4e1a79e..63a2b85 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalAsyncTickPriorityCopyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalAsyncTickPriorityCopyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs index 189015b..28e668b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalIdRequireHandlerAsyncTickPriorityCopyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs index 7fd4ed1..65f50c6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/DeclareSignalRequireHandlerAsyncTickPriorityCopyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalBindingBindInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalBindingBindInfo.cs index 29c5c45..97d7897 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalBindingBindInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalBindingBindInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalDeclarationBindInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalDeclarationBindInfo.cs index 017a77f..c945e24 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalDeclarationBindInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/DeclareSignal/SignalDeclarationBindInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalCopyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalCopyBinder.cs index 4495b19..de59b01 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalCopyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalCopyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalExtensions.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalExtensions.cs index cd93bb3..89f3201 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalExtensions.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalTickPriorityCopyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalTickPriorityCopyBinder.cs index f35e1ba..5b97141 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalTickPriorityCopyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/Binders/SignalTickPriorityCopyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalDeclaration.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalDeclaration.cs index b651be6..eb07cc1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalDeclaration.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalDeclaration.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscription.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscription.cs index a0a190c..7e327dd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscription.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscription.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Linq; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscriptionId.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscriptionId.cs index 89ed401..fee5306 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscriptionId.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Internal/SignalSubscriptionId.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Diagnostics; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBus.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBus.cs index 5457aa6..09bcd2e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBus.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBus.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBusInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBusInstaller.cs index 4cee326..958371b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBusInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalBusInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalDeclarationAsyncInitializer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalDeclarationAsyncInitializer.cs index 0de3f5d..4d7c706 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalDeclarationAsyncInitializer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/Signals/Main/SignalDeclarationAsyncInitializer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixture.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixture.cs index 9834301..60b1c19 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixture.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixture.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixtureSceneReference.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixtureSceneReference.cs index 6145d4f..212d263 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixtureSceneReference.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/SceneTestFixtureSceneReference.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if UNITY_EDITOR using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ValidateOnlyAttribute.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ValidateOnlyAttribute.cs index 11c3096..2cf5dfe 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ValidateOnlyAttribute.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ValidateOnlyAttribute.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectIntegrationTestFixture.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectIntegrationTestFixture.cs index ff5a301..7afcf2b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectIntegrationTestFixture.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectIntegrationTestFixture.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using Zenject.Internal; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectTestUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectTestUtil.cs index f65a51b..37c4b42 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectTestUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectTestUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; using UnityEngine; using UnityEngine.SceneManagement; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectUnitTestFixture.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectUnitTestFixture.cs index 153a32e..51f2fee 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectUnitTestFixture.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/TestFramework/ZenjectUnitTestFixture.cs @@ -1,4 +1,12 @@ -using NUnit.Framework; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using NUnit.Framework; namespace Zenject { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestBindingInheritanceMethod.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestBindingInheritanceMethod.cs index 99d5761..852f2be 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestBindingInheritanceMethod.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestBindingInheritanceMethod.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestConcreteIdentifier.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestConcreteIdentifier.cs index 0671adb..a018d18 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestConcreteIdentifier.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestConcreteIdentifier.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestIfNotBound.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestIfNotBound.cs index c0c2935..9c8a1c5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestIfNotBound.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestIfNotBound.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoAllSubContainers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoAllSubContainers.cs index e69de29..5f28270 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoAllSubContainers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoAllSubContainers.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoDirectSubContainers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoDirectSubContainers.cs index e69de29..5f28270 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoDirectSubContainers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMoveIntoDirectSubContainers.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes.cs index 6ed003e..37d8f66 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes2.cs index 2336567..fa08944 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes3.cs index b9366b7..efc1e7e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestMultipleContractTypes3.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestNonLazy.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestNonLazy.cs index d714e6a..f634040 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestNonLazy.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestNonLazy.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestRebind.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestRebind.cs index 99db75d..eecc064 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestRebind.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestRebind.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestUnbind.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestUnbind.cs index 2341a53..70f34a0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestUnbind.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestUnbind.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestWithArguments.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestWithArguments.cs index ee55de7..8245806 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestWithArguments.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/BindFeatures/TestWithArguments.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFrom.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFrom.cs index da882b9..9854e4b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFrom.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFrom.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromFactory.cs index c604f3b..f619a0a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using ModestTree; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromGetter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromGetter.cs index 2950998..8112c68 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromGetter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromGetter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory.cs index 2d65046..ca37473 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory2.cs index 8ded7a1..ec981fc 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromIFactory2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromInstance.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromInstance.cs index 9eb6037..3d858e5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromInstance.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromInstance.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethod.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethod.cs index 65b3ccd..bd23141 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethod.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethod.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultiple.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultiple.cs index 6cc689b..f260174 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultiple.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultiple.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultipleUntyped.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultipleUntyped.cs index c6c5d75..e4670a0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultipleUntyped.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromMethodMultipleUntyped.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromResolve.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromResolve.cs index 278c984..c8afd3d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromResolve.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromResolve.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstaller.cs index a36ea7e..18ed6cd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstance.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstance.cs index 627e5ed..c535b6d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstance.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstance.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstanceGetter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstanceGetter.cs index 8f5dc32..cccabca 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstanceGetter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerInstanceGetter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerMethod.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerMethod.cs index cff5f50..c91d5fd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerMethod.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestFromSubContainerMethod.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestNonGeneric.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestNonGeneric.cs index b543b2b..26e0f73 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestNonGeneric.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestNonGeneric.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestWithKernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestWithKernel.cs index d84cd45..ecc5086 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestWithKernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Bindings/TestWithKernel.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsBasic.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsBasic.cs index a669b7e..ca3a3f6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsBasic.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsBasic.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsComplex.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsComplex.cs index 213e986..53261b8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsComplex.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsComplex.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsFieldName.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsFieldName.cs index 543c973..02e948a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsFieldName.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsFieldName.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsIdentifier.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsIdentifier.cs index 3b492aa..59f97e4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsIdentifier.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsIdentifier.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsParents.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsParents.cs index 5a37cd4..a786d52 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsParents.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsParents.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTarget.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTarget.cs index c985930..fb01cf5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTarget.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTarget.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTargetInstance.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTargetInstance.cs index 7acb17a..0931179 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTargetInstance.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestConditionsTargetInstance.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifierTypes.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifierTypes.cs index 305381e..cf1c293 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifierTypes.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifierTypes.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifiers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifiers.cs index c3d21e2..75ea19f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifiers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conditions/TestIdentifiers.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/Foo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/Foo.cs index b2db2ae..f3f82ae 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/Foo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/Foo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/FooMore.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/FooMore.cs index 73430f1..2b473bc 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/FooMore.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/FooMore.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) namespace Zenject.Tests.Convention.NamespaceTest diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention.cs index b694c4c..93b1215 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention2.cs index 8978297..917f496 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConvention2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConventionNames.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConventionNames.cs index 6239243..743145d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConventionNames.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Conventions/TestConventionNames.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom0.cs index 3b5af1f..6d5eec9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom1.cs index 918f4ac..18ce6b0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom5.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom5.cs index 4e04c41..ceebc76 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom5.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFrom5.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory0.cs index c439a8b..e29f50b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory1.cs index e2f936b..0d73b23 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromFactory1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromGetter0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromGetter0.cs index e1dba8e..97f5b51 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromGetter0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromGetter0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromInstance0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromInstance0.cs index d3f8b9b..f48759a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromInstance0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromInstance0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod0.cs index dafa13f..243d568 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod1.cs index 3be1370..1551418 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromMethod1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromResolve0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromResolve0.cs index 4060c30..526fe27 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromResolve0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromResolve0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller0.cs index dc7ffeb..5ace2ff 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller1.cs index 55dce26..1de9483 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerInstaller1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod0.cs index bf51af2..0637a80 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod1.cs index 3b65598..40d3c23 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryFromSubContainerMethod1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryWithArguments.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryWithArguments.cs index c71d02e..df62f04 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryWithArguments.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/Bindings/TestFactoryWithArguments.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/IFactory/TestIFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/IFactory/TestIFactory.cs index ff44feb..b64a3ab 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/IFactory/TestIFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/IFactory/TestIFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/TestFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/TestFactory.cs index 2a29da1..a619cbe 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/TestFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Factories/TestFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestAllInjectionTypes.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestAllInjectionTypes.cs index f3ba80c..c824b52 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestAllInjectionTypes.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestAllInjectionTypes.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestBaseClassPropertyInjection.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestBaseClassPropertyInjection.cs index 915100d..4732c37 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestBaseClassPropertyInjection.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestBaseClassPropertyInjection.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestCircularDependencies.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestCircularDependencies.cs index adeed11..f89bebd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestCircularDependencies.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestCircularDependencies.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjection.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjection.cs index 1bc4354..3ef35a1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjection.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjection.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjectionOptional.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjectionOptional.cs index f86a154..51d9961 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjectionOptional.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestConstructorInjectionOptional.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestDuplicateInjection.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestDuplicateInjection.cs index 030ebf1..3b15205 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestDuplicateInjection.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestDuplicateInjection.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestInjectSources.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestInjectSources.cs index 531302d..c9cc169 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestInjectSources.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestInjectSources.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestListInjection.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestListInjection.cs index 906d298..99986b7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestListInjection.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestListInjection.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestNullableValues.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestNullableValues.cs index b63cbbe..8d0e440 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestNullableValues.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestNullableValues.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestParameters.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestParameters.cs index 2093dd9..22ed486 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestParameters.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestParameters.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectCall.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectCall.cs index 76385ea..84e02ce 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectCall.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectCall.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectParameters.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectParameters.cs index ecad6be..6d7a9a1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectParameters.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPostInjectParameters.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPropertyInjection.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPropertyInjection.cs index c09985d..c8308a6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPropertyInjection.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestPropertyInjection.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestStructInjection.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestStructInjection.cs index 1e8b428..f36e215 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestStructInjection.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestStructInjection.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestTestOptional.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestTestOptional.cs index 935ee93..4da5f84 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestTestOptional.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Injection/TestTestOptional.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestArrayPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestArrayPool.cs index 1876bf5..3978d83 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestArrayPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestArrayPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestDisposeBlock.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestDisposeBlock.cs index cf9bf9e..9994d3c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestDisposeBlock.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestDisposeBlock.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolOne.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolOne.cs index 96b6649..eb9fa89 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolOne.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolOne.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolSix.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolSix.cs index b4ed1ad..df9cd1d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolSix.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolSix.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolValidation.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolValidation.cs index c3e20cb..676a6c0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolValidation.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolValidation.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolZero.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolZero.cs index f2dfafc..9c846a2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolZero.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestFromPoolableMemoryPoolZero.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPool0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPool0.cs index b57a1e7..f745813 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPool0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPool0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPoolCustomFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPoolCustomFactory.cs index c27c719..8b0d4db 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPoolCustomFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestMemoryPoolCustomFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestPoolableStaticMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestPoolableStaticMemoryPool.cs index 7f37a51..cdce95d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestPoolableStaticMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestPoolableStaticMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestStaticMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestStaticMemoryPool.cs index 5c82771..037bec4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestStaticMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/MemoryPool/TestStaticMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAllocs.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAllocs.cs index e3c548d..213a3cf 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAllocs.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAllocs.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + // In order to run this, install dotMemoryPeek through nuget and then change this to 1 #if false diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAsSingle.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAsSingle.cs index af5ae8e..c4b8d52 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAsSingle.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestAsSingle.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestBindCallbacks.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestBindCallbacks.cs index 4fb9855..a2a131d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestBindCallbacks.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestBindCallbacks.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCircularDependencies.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCircularDependencies.cs index fc0ad6f..0c70deb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCircularDependencies.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCircularDependencies.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestClearCacheProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestClearCacheProvider.cs index 7f9da05..2e3ee07 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestClearCacheProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestClearCacheProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCustomInjectAttribute.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCustomInjectAttribute.cs index 3790337..2851e39 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCustomInjectAttribute.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestCustomInjectAttribute.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecoratorValidation.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecoratorValidation.cs index 9556cd0..30dea9d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecoratorValidation.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecoratorValidation.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecorators.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecorators.cs index 9894688..1ba1f53 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecorators.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestDecorators.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFacadeSubContainer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFacadeSubContainer.cs index ba3c1fe..c8e8ed4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFacadeSubContainer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFacadeSubContainer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFactoryMemoryPoolCustomInterface.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFactoryMemoryPoolCustomInterface.cs index 922ca15..31e3409 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFactoryMemoryPoolCustomInterface.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestFactoryMemoryPoolCustomInterface.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestGenericContract.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestGenericContract.cs index 572baed..ce9f0ac 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestGenericContract.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestGenericContract.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestKeyedFactoryExample.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestKeyedFactoryExample.cs index a928c66..05f45d6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestKeyedFactoryExample.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestKeyedFactoryExample.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestLazy.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestLazy.cs index b7260d5..23e8665 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestLazy.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestLazy.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestNestedContainer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestNestedContainer.cs index 3e47087..db6f7da 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestNestedContainer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestNestedContainer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestPoolableManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestPoolableManager.cs index 46a4b45..540bc75 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestPoolableManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestPoolableManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolve.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolve.cs index 810483e..0d44518 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolve.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolve.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolveMany.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolveMany.cs index 6d46309..23366f3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolveMany.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestResolveMany.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers.cs index 31da349..98d164f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers4.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers4.cs index db0baa2..c127a48 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers4.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestSubContainers4.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTaskUpdater.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTaskUpdater.cs index fae56a1..378fe4d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTaskUpdater.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTaskUpdater.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree.Util; using NUnit.Framework; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTestUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTestUtil.cs index 39fdc0b..5e068bb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTestUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTestUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTransientMockProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTransientMockProvider.cs index 4a2cc4d..b0591db 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTransientMockProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestTransientMockProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; namespace Zenject.Tests.Other diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidation.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidation.cs index 888c98d..ecd88ea 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidation.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidation.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidationSettings.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidationSettings.cs index 568ff62..dbebec9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidationSettings.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/TestValidationSettings.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/ZenjectProfileTest.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/ZenjectProfileTest.cs index e99493c..2c28d58 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/ZenjectProfileTest.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Other/ZenjectProfileTest.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; namespace Zenject.Tests.Other diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Profiling/TestInstantiateApproaches.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Profiling/TestInstantiateApproaches.cs index 2d36ff5..e8931bd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Profiling/TestInstantiateApproaches.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Profiling/TestInstantiateApproaches.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Diagnostics; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestAsyncSignals.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestAsyncSignals.cs index 0997ab0..4da852f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestAsyncSignals.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestAsyncSignals.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestBindSignal.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestBindSignal.cs index f63b04d..31a3f5f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestBindSignal.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestBindSignal.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalIdentifiers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalIdentifiers.cs index 6035c3d..d141680 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalIdentifiers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalIdentifiers.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalRuntimeDeclaration.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalRuntimeDeclaration.cs index 1215d70..edc75da 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalRuntimeDeclaration.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalRuntimeDeclaration.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignals1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignals1.cs index 478a2eb..ba14d87 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignals1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignals1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalsAdvanced.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalsAdvanced.cs index 151648f..aa38b83 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalsAdvanced.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Signals/TestSignalsAdvanced.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using NUnit.Framework; using Assert = ModestTree.Assert; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Util/TestListComparer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Util/TestListComparer.cs index 12dd17a..e4e1fb4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Util/TestListComparer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/OptionalExtras/UnitTests/Editor/Util/TestListComparer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs index 6d0c754..0c2ab8c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Diagnostics; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindStatement.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindStatement.cs index c3e9993..91be58e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindStatement.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/BindStatement.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/FactoryBindInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/FactoryBindInfo.cs index c15cf2e..0ffbc6f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/FactoryBindInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/FactoryBindInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/GameObjectCreationParameters.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/GameObjectCreationParameters.cs index ab1774c..f5a2c02 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/GameObjectCreationParameters.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/GameObjectCreationParameters.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/MemoryPoolBindInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/MemoryPoolBindInfo.cs index 5ca06a3..6ebcd8b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/MemoryPoolBindInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindInfo/MemoryPoolBindInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public enum PoolExpandMethods diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ArgConditionCopyNonLazyBinder.cs index 21bb923..21bc8a0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderGeneric.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderGeneric.cs index 957f69c..880554e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderGeneric.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderGeneric.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderNonGeneric.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderNonGeneric.cs index 3bf7135..7d0fcb9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderNonGeneric.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteBinderNonGeneric.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderGeneric.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderGeneric.cs index f351e2a..4b60ef4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderGeneric.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderGeneric.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderNonGeneric.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderNonGeneric.cs index d80f2ca..f092058 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderNonGeneric.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders/ConcreteIdBinderNonGeneric.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteIdArgConditionCopyNonLazyBinder.cs index 4b84dbf..f7d9803 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConditionCopyNonLazyBinder.cs index 27feedd..c561b12 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Linq; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionAssemblySelectionBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionAssemblySelectionBinder.cs index 4f560c9..f572664 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionAssemblySelectionBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionAssemblySelectionBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionBindInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionBindInfo.cs index 6a9662f..4f49a3b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionBindInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionBindInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionFilterTypesBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionFilterTypesBinder.cs index 2fe5cb0..99f788d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionFilterTypesBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionFilterTypesBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionSelectTypesBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionSelectTypesBinder.cs index fee1245..3462204 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionSelectTypesBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions/ConventionSelectTypesBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !(UNITY_WSA && ENABLE_DOTNET) namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/CopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/CopyNonLazyBinder.cs index 0688112..d74388c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/CopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/CopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs index e47c270..51ec0ba 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder0.cs index 70eaa44..1f4b353 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder1.cs index 480e4a4..acadb3c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder10.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder10.cs index d8d043f..9a4b32c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder10.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder10.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder2.cs index 48b49b5..681b21c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder3.cs index f0f5b46..5ae0c67 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder3.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder4.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder4.cs index eee66e6..9c40711 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder4.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder4.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder5.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder5.cs index dbd7ffd..afc97fd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder5.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder5.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder6.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder6.cs index 304e9eb..e6f726f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder6.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder/FactoryArgumentsToChoiceBinder6.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder0.cs index 28338a4..9a2437b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder1.cs index d97fb52..f752aba 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder10.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder10.cs index a5fa13a..eb61b51 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder10.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder10.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder2.cs index 0793774..26a5e22 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder3.cs index c840a8a..22a5256 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder3.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder4.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder4.cs index 7d1bdc6..e4bc6f0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder4.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder4.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder5.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder5.cs index 74783a1..162eb3a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder5.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder5.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder6.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder6.cs index 605be66..116c74d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder6.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/FactoryFromBinder6.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder0.cs index 93c71bd..13db4f7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder1.cs index d600346..8d848ab 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder10.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder10.cs index 8d359a4..32925dd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder10.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder10.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder2.cs index b3f6e18..7984b41 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder3.cs index 66ecc33..8416fa7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder3.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder4.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder4.cs index 3507bfa..9f7e570 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder4.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder4.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder5.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder5.cs index 8539ac4..fcaa208 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder5.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder5.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder6.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder6.cs index e192bbb..35be5c9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder6.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinder6.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderBase.cs index a5b7a27..cd2b5f0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderBase.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderWithParams.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderWithParams.cs index a07d20c..9aaef0b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderWithParams.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderWithParams.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/Untyped/FactoryFromBinderUntyped.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/Untyped/FactoryFromBinderUntyped.cs index bc8dc0b..80536e7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/Untyped/FactoryFromBinderUntyped.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/Untyped/FactoryFromBinderUntyped.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinderBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinderBase.cs index 6a99753..78f22a1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinderBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinderBase.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/DecoratorToChoiceFromBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/DecoratorToChoiceFromBinder.cs index ef2d56a..c9a79d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/DecoratorToChoiceFromBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/DecoratorToChoiceFromBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder0.cs index 55f7c6a..21c09ae 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder1.cs index a840fe1..f9ec0e6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder10.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder10.cs index dfad70e..a6f8d58 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder10.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder10.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder2.cs index 24ee228..8837c69 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder3.cs index add26ce..c965c43 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder3.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder4.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder4.cs index 07bcfa2..0a24fa5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder4.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder4.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder5.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder5.cs index 887ccea..c86bed5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder5.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder5.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder6.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder6.cs index 74a999d..1d4f2f9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder6.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder/FactoryToChoiceBinder6.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder0.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder0.cs index 8b25c26..db199f4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder0.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder0.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder1.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder1.cs index 8032001..b72cb9d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder1.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder1.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder10.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder10.cs index ff2e195..1bfcb6d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder10.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder10.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder2.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder2.cs index 9c25cf6..201eb2d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder2.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder2.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder3.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder3.cs index a15c462..25c67f1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder3.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder3.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder4.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder4.cs index 9ddd8e9..43ca5bb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder4.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder4.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder5.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder5.cs index 0dd45b3..83c475b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder5.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder5.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder6.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder6.cs index 05e63e9..2b48c5d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder6.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder/FactoryToChoiceIdBinder6.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/PlaceholderFactoryBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/PlaceholderFactoryBindingFinalizer.cs index fb8c67c..687828a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/PlaceholderFactoryBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/PlaceholderFactoryBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolBindingFinalizer.cs index 3c1ba29..aa7b622 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolExpandBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolExpandBinder.cs index 75cce20..08ae80c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolExpandBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolExpandBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolInitialSizeBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolInitialSizeBinder.cs index 284f2d9..1d47617 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolInitialSizeBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling/MemoryPoolInitialSizeBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinder.cs index 39e5793..0330bf9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderGeneric.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderGeneric.cs index c23ed7e..63b3f9a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderGeneric.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderGeneric.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderNonGeneric.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderNonGeneric.cs index a92ea9e..2831edb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderNonGeneric.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders/FromBinderNonGeneric.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs index c9a7b73..5b19fa2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs index 31bd1f9..1292fab 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject/TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs index 620ae88..03af98e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs index 5947289..fd29fd3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IfNotBoundBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IfNotBoundBinder.cs index 9c9aa28..9fe3578 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IfNotBoundBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/IfNotBoundBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/InstantiateCallbackConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/InstantiateCallbackConditionCopyNonLazyBinder.cs index 162bfc6..c531f74 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/InstantiateCallbackConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/InstantiateCallbackConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/NonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/NonLazyBinder.cs index 6214ec9..f03a4f0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/NonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/NonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ScopeConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ScopeConcreteIdArgConditionCopyNonLazyBinder.cs index 2c058a3..145cb7a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ScopeConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/ScopeConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/SubContainerBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/SubContainerBinder.cs index b53373d..8d7e163 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/SubContainerBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/SubContainerBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs index 3d1912e..24b9944 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs index 72b1b91..acb3114 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Binders/WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs index bfea1d7..c137d1a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/BindingUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Diagnostics; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/IBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/IBindingFinalizer.cs index ca6901a..c2ebf03 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/IBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/IBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public interface IBindingFinalizer diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/NullBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/NullBindingFinalizer.cs index f7d913b..ed10bca 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/NullBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/NullBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { [NoReflectionBaking] diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabBindingFinalizer.cs index a689399..e69686a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabResourceBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabResourceBindingFinalizer.cs index 92b8a5c..baa99bf 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabResourceBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/PrefabResourceBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ProviderBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ProviderBindingFinalizer.cs index 074b5c2..bbd57ed 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ProviderBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ProviderBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ScopableBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ScopableBindingFinalizer.cs index e88c15a..89cd32b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ScopableBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/ScopableBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SingleProviderBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SingleProviderBindingFinalizer.cs index 3bb2453..7483f87 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SingleProviderBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SingleProviderBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerBindingFinalizer.cs index 236757d..d534eee 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerPrefabBindingFinalizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerPrefabBindingFinalizer.cs index 05790a2..2655b5f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerPrefabBindingFinalizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Binding/Finalizers/SubContainerPrefabBindingFinalizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorStaticInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorStaticInstaller.cs index acb6d1f..a1adc86 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorStaticInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorStaticInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorWindow/ZenjectEditorWindow.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorWindow/ZenjectEditorWindow.cs index 99a31e2..20e30f5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorWindow/ZenjectEditorWindow.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/EditorWindow/ZenjectEditorWindow.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ContextEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ContextEditor.cs index f969c20..2101582 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ContextEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ContextEditor.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !ODIN_INSPECTOR namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/GameObjectContextEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/GameObjectContextEditor.cs index 6f235c5..8f26de0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/GameObjectContextEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/GameObjectContextEditor.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !ODIN_INSPECTOR using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ProjectContextEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ProjectContextEditor.cs index 72de9d5..8ba457f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ProjectContextEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/ProjectContextEditor.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !ODIN_INSPECTOR using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs index deddebe..d98b41a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs @@ -1,4 +1,12 @@ -#if !ODIN_INSPECTOR +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !ODIN_INSPECTOR using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneContextEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneContextEditor.cs index fb2f7ae..41b44b1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneContextEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneContextEditor.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !ODIN_INSPECTOR using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneDecoratorContextEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneDecoratorContextEditor.cs index 07ab1c6..37977d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneDecoratorContextEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/Editors/SceneDecoratorContextEditor.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !ODIN_INSPECTOR using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ObjectGraphVisualizer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ObjectGraphVisualizer.cs index 5eadfbd..f7a24f8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ObjectGraphVisualizer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ObjectGraphVisualizer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.IO; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/DefaultSceneContractConfig.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/DefaultSceneContractConfig.cs index 14246bb..93afb4d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/DefaultSceneContractConfig.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/DefaultSceneContractConfig.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/SceneParentAutomaticLoader.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/SceneParentAutomaticLoader.cs index c0f17a8..0dc54df 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/SceneParentAutomaticLoader.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading/SceneParentAutomaticLoader.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using ModestTree; using UnityEditor; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/UnityInspectorListEditor.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/UnityInspectorListEditor.cs index b50b777..fda559a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/UnityInspectorListEditor.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/UnityInspectorListEditor.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Linq; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs index 233f889..a9fa7e1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenMenuItems.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System.IO; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs index a66f1a2..aa2d825 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Editor/ZenUnityEditorUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/FactoryProviderWrapper.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/FactoryProviderWrapper.cs index 30a887f..c360899 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/FactoryProviderWrapper.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/FactoryProviderWrapper.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/IFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/IFactory.cs index f62fe0d..57b88bd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/IFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/IFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public interface IFactory diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs index f8f6cac..1ed9c57 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/KeyedFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactory.cs index 1e3afe7..7ab4f7f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactoryBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactoryBase.cs index be43001..7580550 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactoryBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PlaceholderFactoryBase.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/IMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/IMemoryPool.cs index 185e0fe..2689a04 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/IMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/IMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPool.cs index 89356d9..950f668 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { // Zero parameters diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPoolBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPoolBase.cs index deab0be..8a1b89c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPoolBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MemoryPoolBase.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoMemoryPool.cs index 9428957..c28978e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoPoolableMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoPoolableMemoryPool.cs index f9d1694..e27a160 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoPoolableMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/MonoPoolableMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolFactory.cs index 541f293..7370d22 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolableMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolableMemoryPool.cs index febb762..ebc5161 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolableMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/PoolableMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { // Zero parameters diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/PoolableStaticMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/PoolableStaticMemoryPool.cs index 3002390..1d5420a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/PoolableStaticMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/PoolableStaticMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public class PoolableStaticMemoryPool : StaticMemoryPool diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/StaticMemoryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/StaticMemoryPool.cs index 032809a..05f3507 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/StaticMemoryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Static/StaticMemoryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ArrayPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ArrayPool.cs index a5edb89..d0d6986 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ArrayPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ArrayPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/DictionaryPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/DictionaryPool.cs index 8ec6d37..6ad3381 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/DictionaryPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/DictionaryPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/HashSetPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/HashSetPool.cs index 5fb2950..5b4d52d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/HashSetPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/HashSetPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ListPool.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ListPool.cs index 70b5c74..1f61131 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ListPool.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/ListPool.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/PoolCleanupChecker.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/PoolCleanupChecker.cs index df27969..dc85dcb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/PoolCleanupChecker.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/PoolCleanupChecker.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/StaticMemoryPoolRegistry.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/StaticMemoryPoolRegistry.cs index d110001..8f86dff 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/StaticMemoryPoolRegistry.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/Pooling/Util/StaticMemoryPoolRegistry.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs index e149b3c..78cd694 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabFactory.cs @@ -1,4 +1,12 @@ -#if !NOT_UNITY3D +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !NOT_UNITY3D using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabResourceFactory.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabResourceFactory.cs index 8967e23..0c14484 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabResourceFactory.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Factories/PrefabResourceFactory.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectContext.cs index 86d13be..4c60ffd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs index 430df54..c236d17 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/InjectUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Diagnostics; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/LazyInject.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/LazyInject.cs index 9dd2cf5..097cdad 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/LazyInject.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Injection/LazyInject.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs index 4c54192..67bf024 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/Context.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/GameObjectContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/GameObjectContext.cs index 80e1897..91d0e15 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/GameObjectContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/GameObjectContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/ProjectContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/ProjectContext.cs index 924dcb3..cd22db7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/ProjectContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/ProjectContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs index ab32a48..fccfc42 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs @@ -1,4 +1,12 @@ -using ModestTree; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using ModestTree; using UnityEngine; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneContext.cs index ceba027..69b7226 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneDecoratorContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneDecoratorContext.cs index 587bda2..d8d7d02 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneDecoratorContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/SceneDecoratorContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/StaticContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/StaticContext.cs index c4933d4..00f091a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/StaticContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Contexts/StaticContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/IInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/IInstaller.cs index c74a4ba..715470b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/IInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/IInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { // We extract the interface so that monobehaviours can be installers diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Installer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Installer.cs index 75e6fea..5bc9e78 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Installer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/Installer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { // diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/InstallerBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/InstallerBase.cs index 5dc96f0..79af3e4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/InstallerBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/InstallerBase.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public abstract class InstallerBase : IInstaller diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs index ce38296..6c71104 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs index a2da881..529c193 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/MonoInstallerBase.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstaller.cs index d45c562..521f121 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstallerBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstallerBase.cs index a38501f..368d69d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstallerBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ScriptableObjectInstallerBase.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs index fcdb386..14fb7fd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectBinding.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectManagersInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectManagersInstaller.cs index b5329d7..06fb84d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectManagersInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Install/ZenjectManagersInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Assert.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Assert.cs index 77d1f0e..20e2e70 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Assert.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Assert.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Func.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Func.cs index 2e3e6f6..7d7bd8a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Func.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Func.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NET_4_6 namespace ModestTree.Util diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs index c783095..b71222b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/LinqExtensions.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Log.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Log.cs index a3d57f4..8d89872 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Log.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/Log.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Diagnostics; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs index 52f4b84..ba2e11b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/MiscExtensions.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs index f1bc8bc..b699d80 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace ModestTree.Util diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs index ca0ac00..2f2135d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeExtensions.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeStringFormatter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeStringFormatter.cs index 56af29a..ea0300c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeStringFormatter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/TypeStringFormatter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/ValuePair.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/ValuePair.cs index 78e386e..c79bfd1 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/ValuePair.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Internal/ValuePair.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/BindingId.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/BindingId.cs index 2c21605..356e0cd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/BindingId.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/BindingId.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Diagnostics; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/DiContainer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/DiContainer.cs index 571099a..5212b08 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/DiContainer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/DiContainer.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/IInstantiator.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/IInstantiator.cs index ba58b56..d50af42 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/IInstantiator.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/IInstantiator.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs index 6d061bb..e3f6078 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LazyInstanceInjector.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LookupId.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LookupId.cs index 77c340d..e30cd46 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LookupId.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/LookupId.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; namespace Zenject.Internal diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs index ac627f4..833dbba 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/SingletonMarkRegistry.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs index d7fd4c7..c1ffc10 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Main/ZenjectSettings.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; #if !NOT_UNITY3D using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedOpenTypeProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedOpenTypeProvider.cs index bf4244b..6fdffd8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedOpenTypeProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedOpenTypeProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs index f883a44..d18a4e2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/CachedProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToCurrentGameObjectComponentProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToCurrentGameObjectComponentProvider.cs index d12444f..5c9ac6f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToCurrentGameObjectComponentProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToCurrentGameObjectComponentProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToExistingGameObjectComponentProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToExistingGameObjectComponentProvider.cs index a57e3f9..2cf7b45 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToExistingGameObjectComponentProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToExistingGameObjectComponentProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToGameObjectComponentProviderBase.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToGameObjectComponentProviderBase.cs index 3ab95aa..a51f2be 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToGameObjectComponentProviderBase.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToGameObjectComponentProviderBase.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToNewGameObjectComponentProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToNewGameObjectComponentProvider.cs index 099f17a..3adb906 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToNewGameObjectComponentProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders/AddToNewGameObjectComponentProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectComponentProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectComponentProvider.cs index c9ba453..a5e178d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectComponentProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectComponentProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectGetterComponentProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectGetterComponentProvider.cs index 7d9bbc7..9332a2b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectGetterComponentProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromGameObjectGetterComponentProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromPrefabComponentProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromPrefabComponentProvider.cs index ff16b47..5d6a72d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromPrefabComponentProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/GetFromPrefabComponentProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/InstantiateOnPrefabComponentProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/InstantiateOnPrefabComponentProvider.cs index dd691f2..94db6ee 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/InstantiateOnPrefabComponentProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/InstantiateOnPrefabComponentProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/Decorator/DecoratorProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/Decorator/DecoratorProvider.cs index c3e7b2f..3234dc8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/Decorator/DecoratorProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/Decorator/DecoratorProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/EmptyGameObjectProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/EmptyGameObjectProvider.cs index 81e303e..4c00fcf 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/EmptyGameObjectProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/EmptyGameObjectProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/PrefabGameObjectProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/PrefabGameObjectProvider.cs index 4b8687a..4d0078c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/PrefabGameObjectProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders/PrefabGameObjectProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs index 23fd5dc..c62be58 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/GetterProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs index 517ccca..3678738 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IFactoryProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProvider.cs index 7e0b2a7..09dc7ba 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProviderExtensions.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProviderExtensions.cs index 67a1a60..604570b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProviderExtensions.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/IProviderExtensions.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs index a29f15e..d020524 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/InstanceProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodMultipleProviderUntyped.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodMultipleProviderUntyped.cs index 39385eb..64a63ed 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodMultipleProviderUntyped.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodMultipleProviderUntyped.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs index 609350b..965c4d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderMultiple.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderMultiple.cs index cf68515..9c42413 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderMultiple.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderMultiple.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderSimple.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderSimple.cs index db4d767..59b0b54 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderSimple.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderSimple.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderUntyped.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderUntyped.cs index 76a286b..83525a0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderUntyped.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderUntyped.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderWithContainer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderWithContainer.cs index 0be93f1..082f354 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderWithContainer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/MethodProviderWithContainer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PoolableMemoryPoolProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PoolableMemoryPoolProvider.cs index 0b04139..c7e5e7e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PoolableMemoryPoolProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PoolableMemoryPoolProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/IPrefabInstantiator.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/IPrefabInstantiator.cs index 55964c5..4bebef3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/IPrefabInstantiator.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/IPrefabInstantiator.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiator.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiator.cs index f4c9094..1628045 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiator.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiator.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiatorCached.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiatorCached.cs index d3adb2f..86737e4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiatorCached.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabCreators/PrefabInstantiatorCached.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/IPrefabProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/IPrefabProvider.cs index 13ff896..eca5323 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/IPrefabProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/IPrefabProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProvider.cs index f60828e..761d41e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderCustom.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderCustom.cs index 1e4ee13..2343238 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderCustom.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderCustom.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderResource.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderResource.cs index 35faaa8..cba1296 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderResource.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/PrefabProviderResource.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs index bee9115..8b7266e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ProviderUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs index 4945734..4e4a58a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResolveProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs index 6c604ba..907ff5a 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ResourceProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectInstanceProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectInstanceProvider.cs index a0c58c5..c0e72e7 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectInstanceProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectInstanceProvider.cs @@ -1,4 +1,12 @@ -#if !NOT_UNITY3D +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +#if !NOT_UNITY3D using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectResourceProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectResourceProvider.cs index 5244152..f7100cb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectResourceProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/ScriptableObjectResourceProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/ISubContainerCreator.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/ISubContainerCreator.cs index c7195e3..f886aa8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/ISubContainerCreator.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/ISubContainerCreator.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorBindInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorBindInfo.cs index de51934..d7a6f9e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorBindInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorBindInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstaller.cs index acd18bd..5c9f176 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstance.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstance.cs index 6203e58..3ef107e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstance.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstance.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstanceGetter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstanceGetter.cs index 8bad289..82c0ba9 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstanceGetter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByInstanceGetter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByMethod.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByMethod.cs index 8530f9c..224ac57 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByMethod.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByMethod.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewGameObjectDynamicContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewGameObjectDynamicContext.cs index 5d5f900..35cfd3b 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewGameObjectDynamicContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewGameObjectDynamicContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefab.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefab.cs index 3108ad6..7a71786 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefab.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefab.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabDynamicContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabDynamicContext.cs index 79972d1..80625ba 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabDynamicContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabDynamicContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabWithParams.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabWithParams.cs index c8ca81e..a78dc7c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabWithParams.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorByNewPrefabWithParams.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorCached.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorCached.cs index b099aae..5df0635 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorCached.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorCached.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorDynamicContext.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorDynamicContext.cs index bc21317..e6e10e6 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorDynamicContext.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorDynamicContext.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorUtil.cs index 2e20a6a..ab373f8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators/SubContainerCreatorUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using ModestTree; #if !NOT_UNITY3D diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerDependencyProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerDependencyProvider.cs index f55d6e8..b0e7412 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerDependencyProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/SubContainerDependencyProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs index 998cbc6..8cb8c60 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Providers/TransientProvider.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorIkHandlerManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorIkHandlerManager.cs index 2c42706..7ca6468 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorIkHandlerManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorIkHandlerManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorInstaller.cs index 243a7bc..7b339de 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorMoveHandlerManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorMoveHandlerManager.cs index 4293e33..dfbe8a0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorMoveHandlerManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/AnimatorMoveHandlerManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorIkHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorIkHandler.cs index f2e023c..d23a6da 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorIkHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorIkHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public interface IAnimatorIkHandler diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorMoveHandler.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorMoveHandler.cs index 2f23f03..e71be58 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorMoveHandler.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorMoveHandler.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public interface IAnimatorMoveHandler diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs index b561e73..e7a6bc2 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/DisposableManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderableManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderableManager.cs index 71e13ea..ea6fbfd 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderableManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderableManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs index 3e86cff..08cc26f 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/GuiRenderer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using UnityEngine; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/InitializableManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/InitializableManager.cs index 680b2c7..5f2a769 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/InitializableManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/InitializableManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs index b96d050..dc2852c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs @@ -1,4 +1,12 @@ -namespace Zenject +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +namespace Zenject { public interface IDecoratableMonoKernel { diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DefaultGameObjectKernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DefaultGameObjectKernel.cs index f2f7863..2c489ca 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DefaultGameObjectKernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/DefaultGameObjectKernel.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs index c1e305a..6ebbaf4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/Kernel.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Diagnostics; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs index 8d40dbc..8559353 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/MonoKernel.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D #pragma warning disable 649 diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/ProjectKernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/ProjectKernel.cs index 6db9c0b..3281a08 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/ProjectKernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/ProjectKernel.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs index 19705b1..436b18c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/Kernels/SceneKernel.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs index ea8a169..c9c612e 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/PoolableManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistry.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistry.cs index a40a033..9b9edbe 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistry.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistry.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using ModestTree; using UnityEngine.SceneManagement; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistryAdderAndRemover.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistryAdderAndRemover.cs index faafa65..42b5606 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistryAdderAndRemover.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/SceneContextRegistryAdderAndRemover.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs index cfb7f53..2260529 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TaskUpdater.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Collections.Generic; using System.Diagnostics; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs index 72474d7..0358aa4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Runtime/TickableManager.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs index 4386b7e..0c0bb6c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ActionInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/CheatSheet.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/CheatSheet.cs index 3af1cd4..516f1a5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/CheatSheet.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/CheatSheet.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.Linq; using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DefaultGameObjectParentInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DefaultGameObjectParentInstaller.cs index 3be76fa..c06be0d 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DefaultGameObjectParentInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DefaultGameObjectParentInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs index 3b4c534..b2f57e8 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/DisposeBlock.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using ModestTree; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ExecutionOrderInstaller.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ExecutionOrderInstaller.cs index c298dc5..6590180 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ExecutionOrderInstaller.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ExecutionOrderInstaller.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs index ed5ba3a..26369d3 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileBlock.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Text.RegularExpressions; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs index ccd79ea..5605aa0 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ProfileTimers.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if ZEN_INTERNAL_PROFILING using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionInfoTypeInfoConverter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionInfoTypeInfoConverter.cs index 6038b97..a5d2309 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionInfoTypeInfoConverter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionInfoTypeInfoConverter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + //#define ZEN_DO_NOT_USE_COMPILED_EXPRESSIONS using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs index 98ccac4..f6b9b4c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionTypeInfo.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Reflection; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs index d8c2fc2..4f012e5 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ReflectionUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs index c4c4094..4c24b32 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/TypeAnalyzer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/UnityUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/UnityUtil.cs index e262b21..5fe5f87 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/UnityUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/UnityUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs index 9cbe5df..a429358 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ValidationUtil.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs index 7756c5d..b1b8f17 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenAutoInjecter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenPools.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenPools.cs index a162e1d..3823702 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenPools.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenPools.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenReflectionTypeAnalyzer.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenReflectionTypeAnalyzer.cs index 57c5430..3243b37 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenReflectionTypeAnalyzer.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenReflectionTypeAnalyzer.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs index 174d2a8..ebdfcc4 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenUtilInternal.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Collections.Generic; using System.Linq; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectException.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectException.cs index f0ee200..53e5c9c 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectException.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectException.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; using System.Diagnostics; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs index 87980f3..79755cb 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectSceneLoader.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + #if !NOT_UNITY3D using System; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectStateMachineBehaviourAutoInjecter.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectStateMachineBehaviourAutoInjecter.cs index 05f8a65..2122195 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectStateMachineBehaviourAutoInjecter.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Util/ZenjectStateMachineBehaviourAutoInjecter.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using ModestTree; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs index ba8f4a6..2fef087 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + namespace Zenject { public interface IValidatable diff --git a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs index e199a65..44f6367 100644 --- a/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs +++ b/Test_Dvurechensky/Assets/Plugins/Zenject/Source/Validation/ValidationMarker.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System; namespace Zenject diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/ObjectsPools.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/ObjectsPools.cs index 4c5e9be..30a769e 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/ObjectsPools.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/ObjectsPools.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using UnityEngine; using Zenject; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/TableViewBase.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/TableViewBase.cs index 333c611..51079f8 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/TableViewBase.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Base/TableViewBase.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; public class TableViewBase : MonoBehaviour { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Boot/BootInstaller.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Boot/BootInstaller.cs index f001e12..5b62ddb 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Boot/BootInstaller.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Boot/BootInstaller.cs @@ -1,7 +1,15 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using Zenject; /// -/// Контейнер регистрации объектов +/// Контейнер регистрации объектов /// public class BootInstaller : MonoInstaller { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemController.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemController.cs index c851875..2c553fe 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemController.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemController.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Threading; using Cysharp.Threading.Tasks; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemFactory.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemFactory.cs index 8cfbc7b..24b0630 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemFactory.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemFactory.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; public class FactItemFactory { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemModel.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemModel.cs index ed70f86..ed1aa0c 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemModel.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemModel.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; /// /// Шаблон модели хранения информации о ячейки таблицы Facts diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemView.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemView.cs index 29eb8f7..8382955 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemView.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactItem/FactItemView.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using TMPro; using UnityEngine; using UnityEngine.UI; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpController.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpController.cs index 1df4dba..fd22e00 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpController.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpController.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; public class FactPopUpController : IDisposable { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpManager.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpManager.cs index 2e4183f..3986efd 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpManager.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpManager.cs @@ -1,4 +1,12 @@ -using UnityEngine; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using UnityEngine; public class FactPopUpManager : MonoBehaviour { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpModel.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpModel.cs index 6249283..79245ba 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpModel.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpModel.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; /// /// Шаблон модели хранения информации о всплывающем окне таблицы Facts diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpView.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpView.cs index 58e5e3d..3411994 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpView.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactPopUp/FactPopUpView.cs @@ -1,4 +1,12 @@ -using TMPro; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using TMPro; using UnityEngine; using UnityEngine.UI; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableController.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableController.cs index 86a5ad8..5982a4e 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableController.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableController.cs @@ -1,4 +1,12 @@ -using System.Collections.Generic; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Collections.Generic; using System.Threading; using Cysharp.Threading.Tasks; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableManager.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableManager.cs index 3f531ba..098c9e4 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableManager.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableManager.cs @@ -1,4 +1,12 @@ -using System.Threading; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Threading; using Cysharp.Threading.Tasks; using UnityEngine; using Zenject; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableModel.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableModel.cs index 638868a..624e2ea 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableModel.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableModel.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; /// diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableView.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableView.cs index 8cc30f7..30dda9b 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableView.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Facts/FactTable/FactTableView.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; /// /// Отображение таблицы Facts diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemController.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemController.cs index ec147e2..02ea501 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemController.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemController.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Threading; public class ForecastItemController : IDisposable diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemFactory.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemFactory.cs index 1949a70..f96d4be 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemFactory.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemFactory.cs @@ -1,4 +1,12 @@ -public class ForecastItemFactory +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +public class ForecastItemFactory { private NetService _netService; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemModel.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemModel.cs index 51bd0c7..d792106 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemModel.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemModel.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; public class ForecastItemModel { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemView.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemView.cs index 9520e38..e63b260 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemView.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastItem/ForecastItemView.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using TMPro; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableController.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableController.cs index 95ecb22..1cad47d 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableController.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableController.cs @@ -1,4 +1,12 @@ -using System.Collections.Generic; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Collections.Generic; using System.Linq; using System.Threading; using Cysharp.Threading.Tasks; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableManager.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableManager.cs index bf2837b..993107f 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableManager.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableManager.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Threading; using Cysharp.Threading.Tasks; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableModel.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableModel.cs index cc27e44..646f4d2 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableModel.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableModel.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; public class ForecastTableModel { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableView.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableView.cs index 2a02749..9dd6a43 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableView.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Forecast/ForecastTable/ForecastTableView.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; public class ForecastTableView : TableViewBase { diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Addressables/AddressableService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Addressables/AddressableService.cs index f94fe12..36df41b 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Addressables/AddressableService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Addressables/AddressableService.cs @@ -1,4 +1,12 @@ -using System.Collections.Generic; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Collections.Generic; using System.Linq; using Cysharp.Threading.Tasks; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/INetDataService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/INetDataService.cs index e55c64f..52cda13 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/INetDataService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/INetDataService.cs @@ -1,4 +1,12 @@ -using System.Threading; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Threading; using Cysharp.Threading.Tasks; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/Implements/NetDataService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/Implements/NetDataService.cs index aa3aacd..552ef18 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/Implements/NetDataService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Data/Implements/NetDataService.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.IO; using System.Security.Cryptography; using System.Threading; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactAttributes.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactAttributes.cs index 04f61ed..9e9e691 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactAttributes.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactAttributes.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using Newtonsoft.Json; [Serializable] diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactContent.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactContent.cs index 2da7e4a..99f5049 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactContent.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactContent.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using Newtonsoft.Json; [Serializable] diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactsContent.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactsContent.cs index effc5d4..514bcdb 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactsContent.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/FactsContent.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using Newtonsoft.Json; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactApiResponse.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactApiResponse.cs index 350db0a..c77183a 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactApiResponse.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactApiResponse.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using Newtonsoft.Json; [Serializable] diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactsApiResponse.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactsApiResponse.cs index 3ba5281..09d4ced 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactsApiResponse.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/Components/Responses/FactsApiResponse.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using Newtonsoft.Json; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/INetFactsService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/INetFactsService.cs index 85b1e48..70dcf99 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/INetFactsService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/INetFactsService.cs @@ -1,4 +1,12 @@ -using System.Threading; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Threading; using Cysharp.Threading.Tasks; /// diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/implements/NetFactsService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/implements/NetFactsService.cs index 22065a3..fa3ecc3 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/implements/NetFactsService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Facts/implements/NetFactsService.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Net.Http; using System.Threading; using Cysharp.Threading.Tasks; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastPeriodContent.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastPeriodContent.cs index ff6b80b..cb4f584 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastPeriodContent.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastPeriodContent.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using Newtonsoft.Json; using UnityEngine; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastsContent.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastsContent.cs index 11ccd6f..47830b4 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastsContent.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/ForecastsContent.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Collections.Generic; using Newtonsoft.Json; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/Responses/ForecastApiResponse.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/Responses/ForecastApiResponse.cs index 3ebceac..30a894f 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/Responses/ForecastApiResponse.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Components/Responses/ForecastApiResponse.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using Newtonsoft.Json; [Serializable] diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/INetForecastService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/INetForecastService.cs index ec9f61a..910453b 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/INetForecastService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/INetForecastService.cs @@ -1,4 +1,12 @@ -using System.Threading; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System.Threading; using Cysharp.Threading.Tasks; /// diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Implements/NetForecastService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Implements/NetForecastService.cs index 69dc1c7..965767f 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Implements/NetForecastService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/Forecast/Implements/NetForecastService.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using System.Net.Http; using System.Threading; using Cysharp.Threading.Tasks; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/NetService.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/NetService.cs index 93b02ae..56029aa 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/NetService.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/Logic/Services/Net/NetService.cs @@ -1,4 +1,12 @@ -using System; +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + +using System; using UnityEngine; using Zenject; diff --git a/Test_Dvurechensky/Assets/_Scripts/Mono/UI/NavigateController.cs b/Test_Dvurechensky/Assets/_Scripts/Mono/UI/NavigateController.cs index 138c30b..b4c0519 100644 --- a/Test_Dvurechensky/Assets/_Scripts/Mono/UI/NavigateController.cs +++ b/Test_Dvurechensky/Assets/_Scripts/Mono/UI/NavigateController.cs @@ -1,30 +1,38 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + using System.ComponentModel; using UnityEngine; using UnityEngine.UI; public enum NavStateEnum { - [Description("Окно погоды")] + [Description("РћРєРЅРѕ РїРѕРіРѕРґС‹")] Forecast, - [Description("Окно фактов")] + [Description("РћРєРЅРѕ фактов")] Facts } public class NavigateController : MonoBehaviour { [Space(20)] - [Header("Кнопка открытия окна фактов")] + [Header("РљРЅРѕРїРєР° открытия РѕРєРЅР° фактов")] public Button FactsOpen; [Space(10)] - [Header("Кнопка открытия окна погоды")] + [Header("РљРЅРѕРїРєР° открытия РѕРєРЅР° РїРѕРіРѕРґС‹")] public Button ForecastOpen; [Space(50)] - [Header("Менеджер управления таблицей погоды")] + [Header("Менеджер управления таблицей РїРѕРіРѕРґС‹")] public ForecastTableManager ForecastTableManager; [Space(10)] - [Header("Менеджер управления таблицей фактов")] + [Header("Менеджер управления таблицей фактов")] public FactTableManager FactTableManager; private void Awake() { diff --git a/Test_Dvurechensky/obj/Debug/.NETFramework,Version=v4.7.1.AssemblyAttributes.cs b/Test_Dvurechensky/obj/Debug/.NETFramework,Version=v4.7.1.AssemblyAttributes.cs index 3d63587..5c13f5f 100644 --- a/Test_Dvurechensky/obj/Debug/.NETFramework,Version=v4.7.1.AssemblyAttributes.cs +++ b/Test_Dvurechensky/obj/Debug/.NETFramework,Version=v4.7.1.AssemblyAttributes.cs @@ -1,3 +1,11 @@ +/* + * Author: Nikolay Dvurechensky + * Site: https://www.dvurechensky.pro/ + * Gmail: dvurechenskysoft@gmail.com + * Last Updated: 12 мая 2025 08:07:05 + * Version: 1.0.1 + */ + // using System; using System.Reflection; diff --git a/Unity.gitignore b/Unity.gitignore deleted file mode 100644 index c5bd204..0000000 --- a/Unity.gitignore +++ /dev/null @@ -1,73 +0,0 @@ -# This .gitignore file should be placed at the root of your Unity project directory -# -# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore -# -/Media/ -/[Ll]ibrary/ -/[Tt]emp/ -/[Oo]bj/ -/[Bb]uild/ -/[Bb]uilds/ -/[Ll]ogs/ -/[Uu]ser[Ss]ettings/ - -# MemoryCaptures can get excessive in size. -# They also could contain extremely sensitive data -/[Mm]emoryCaptures/ - -# Recordings can get excessive in size -/[Rr]ecordings/ - -# Uncomment this line if you wish to ignore the asset store tools plugin -# /[Aa]ssets/AssetStoreTools* - -# Autogenerated Jetbrains Rider plugin -/[Aa]ssets/Plugins/Editor/JetBrains* - -# Visual Studio cache directory -.vs/ - -# Gradle cache directory -.gradle/ - -# Autogenerated VS/MD/Consulo solution and project files -ExportedObj/ -.consulo/ -*.csproj -*.unityproj -*.sln -*.suo -*.tmp -*.user -*.userprefs -*.pidb -*.booproj -*.svd -*.pdb -*.mdb -*.opendb -*.VC.db - -# Unity3D generated meta files -*.pidb.meta -*.pdb.meta -*.mdb.meta - -# Unity3D generated file on crash reports -sysinfo.txt - -# Builds -*.apk -*.aab -*.unitypackage -*.app - -# Crashlytics generated file -crashlytics-build.properties - -# Packed Addressables -/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* - -# Temporary auto-generated Android Assets -/[Aa]ssets/[Ss]treamingAssets/aa.meta -/[Aa]ssets/[Ss]treamingAssets/aa/*