├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .idea └── .idea.UnityMVVM │ └── .idea │ └── workspace.xml ├── BuildForUnityProj.bat ├── BuildForUnityProj.command ├── LICENSE ├── MvvmUnityProj ├── CCG │ ├── .gitignore │ ├── .idea │ │ └── .idea.CCG │ │ │ └── .idea │ │ │ ├── .gitignore │ │ │ ├── encodings.xml │ │ │ ├── indexLayout.xml │ │ │ └── vcs.xml │ ├── Assets │ │ ├── Code.meta │ │ ├── Code │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── CCG.asmdef │ │ │ ├── CCG.asmdef.meta │ │ │ ├── Common.meta │ │ │ ├── Common │ │ │ │ ├── Components.meta │ │ │ │ └── Components │ │ │ │ │ ├── CanvasColliderScaler.cs │ │ │ │ │ └── CanvasColliderScaler.cs.meta │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── ConfigData.cs │ │ │ │ └── ConfigData.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── Camera.meta │ │ │ │ ├── Camera │ │ │ │ │ ├── CameraModel.cs │ │ │ │ │ ├── CameraModel.cs.meta │ │ │ │ │ ├── CameraService.cs │ │ │ │ │ ├── CameraService.cs.meta │ │ │ │ │ ├── ICameraModel.cs │ │ │ │ │ ├── ICameraModel.cs.meta │ │ │ │ │ ├── ICameraMutableModel.cs │ │ │ │ │ ├── ICameraMutableModel.cs.meta │ │ │ │ │ ├── ICameraService.cs │ │ │ │ │ └── ICameraService.cs.meta │ │ │ │ ├── CoreInstaller.cs │ │ │ │ ├── CoreInstaller.cs.meta │ │ │ │ ├── CustomViewManager.meta │ │ │ │ ├── CustomViewManager │ │ │ │ │ ├── LogViewManagerDecorator.cs │ │ │ │ │ └── LogViewManagerDecorator.cs.meta │ │ │ │ ├── GameInstaller.cs │ │ │ │ ├── GameInstaller.cs.meta │ │ │ │ ├── Installers.meta │ │ │ │ ├── Installers │ │ │ │ │ ├── ImageSystemInstaller.cs │ │ │ │ │ └── ImageSystemInstaller.cs.meta │ │ │ │ ├── ResourcesPrefabProvider.cs │ │ │ │ ├── ResourcesPrefabProvider.cs.meta │ │ │ │ ├── Screen.meta │ │ │ │ ├── Screen │ │ │ │ │ ├── IScreenAdapter.cs │ │ │ │ │ ├── IScreenAdapter.cs.meta │ │ │ │ │ ├── ScreenAdapter.cs │ │ │ │ │ └── ScreenAdapter.cs.meta │ │ │ │ ├── StartupBehaviour.cs │ │ │ │ ├── StartupBehaviour.cs.meta │ │ │ │ ├── ViewLayerIds.cs │ │ │ │ ├── ViewLayerIds.cs.meta │ │ │ │ ├── ViewNames.cs │ │ │ │ └── ViewNames.cs.meta │ │ │ ├── MVVM.meta │ │ │ ├── MVVM │ │ │ │ ├── Card.meta │ │ │ │ ├── Card │ │ │ │ │ ├── Model.meta │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── CardFactory.cs │ │ │ │ │ │ ├── CardFactory.cs.meta │ │ │ │ │ │ ├── CardMath.cs │ │ │ │ │ │ ├── CardMath.cs.meta │ │ │ │ │ │ ├── CardModel.cs │ │ │ │ │ │ ├── CardModel.cs.meta │ │ │ │ │ │ ├── ICardFactory.cs │ │ │ │ │ │ ├── ICardFactory.cs.meta │ │ │ │ │ │ ├── ICardModel.cs │ │ │ │ │ │ ├── ICardModel.cs.meta │ │ │ │ │ │ ├── ICardMutableModel.cs │ │ │ │ │ │ └── ICardMutableModel.cs.meta │ │ │ │ │ ├── View.meta │ │ │ │ │ ├── View │ │ │ │ │ │ ├── CardView.cs │ │ │ │ │ │ ├── CardView.cs.meta │ │ │ │ │ │ ├── ICardView.cs │ │ │ │ │ │ └── ICardView.cs.meta │ │ │ │ │ ├── ViewModel.meta │ │ │ │ │ └── ViewModel │ │ │ │ │ │ ├── CardPayload.cs │ │ │ │ │ │ ├── CardPayload.cs.meta │ │ │ │ │ │ ├── CardViewModel.cs │ │ │ │ │ │ ├── CardViewModel.cs.meta │ │ │ │ │ │ ├── ICardPayload.cs │ │ │ │ │ │ ├── ICardPayload.cs.meta │ │ │ │ │ │ ├── ICardViewModel.cs │ │ │ │ │ │ └── ICardViewModel.cs.meta │ │ │ │ ├── Components.meta │ │ │ │ ├── Components │ │ │ │ │ ├── BoardDetector.cs │ │ │ │ │ └── BoardDetector.cs.meta │ │ │ │ ├── CoolPopup.meta │ │ │ │ ├── CoolPopup │ │ │ │ │ ├── CoolPopupException.cs │ │ │ │ │ ├── CoolPopupException.cs.meta │ │ │ │ │ ├── CoolPopupView.cs │ │ │ │ │ ├── CoolPopupView.cs.meta │ │ │ │ │ ├── CoolPopupViewModel.cs │ │ │ │ │ ├── CoolPopupViewModel.cs.meta │ │ │ │ │ ├── ICoolPopupViewModel.cs │ │ │ │ │ ├── ICoolPopupViewModel.cs.meta │ │ │ │ │ ├── Payload.meta │ │ │ │ │ └── Payload │ │ │ │ │ │ ├── CoolPopupPayload.cs │ │ │ │ │ │ ├── CoolPopupPayload.cs.meta │ │ │ │ │ │ ├── ICoolPopupPayload.cs │ │ │ │ │ │ └── ICoolPopupPayload.cs.meta │ │ │ │ ├── HandController.meta │ │ │ │ ├── HandController │ │ │ │ │ ├── HandControllerView.cs │ │ │ │ │ ├── HandControllerView.cs.meta │ │ │ │ │ ├── HandControllerViewModel.cs │ │ │ │ │ ├── HandControllerViewModel.cs.meta │ │ │ │ │ ├── IHandControllerViewModel.cs │ │ │ │ │ └── IHandControllerViewModel.cs.meta │ │ │ │ ├── LoadingPopup.meta │ │ │ │ ├── LoadingPopup │ │ │ │ │ ├── LoadingPopupView.cs │ │ │ │ │ └── LoadingPopupView.cs.meta │ │ │ │ ├── MainMenu.meta │ │ │ │ ├── MainMenu │ │ │ │ │ ├── 3d.meta │ │ │ │ │ ├── 3d │ │ │ │ │ │ ├── IMainMenuViewModel3d.cs │ │ │ │ │ │ ├── IMainMenuViewModel3d.cs.meta │ │ │ │ │ │ ├── MainMenuView3d.cs │ │ │ │ │ │ ├── MainMenuView3d.cs.meta │ │ │ │ │ │ ├── MainMenuViewModel3d.cs │ │ │ │ │ │ └── MainMenuViewModel3d.cs.meta │ │ │ │ │ ├── IMainMenu3dController.cs │ │ │ │ │ ├── IMainMenu3dController.cs.meta │ │ │ │ │ ├── MainMenuState.cs │ │ │ │ │ ├── MainMenuState.cs.meta │ │ │ │ │ ├── ui.meta │ │ │ │ │ └── ui │ │ │ │ │ │ ├── IMainMenuPayloadUi.cs │ │ │ │ │ │ ├── IMainMenuPayloadUi.cs.meta │ │ │ │ │ │ ├── IMainMenuViewModelUi.cs │ │ │ │ │ │ ├── IMainMenuViewModelUi.cs.meta │ │ │ │ │ │ ├── MainMenuPayloadUi.cs │ │ │ │ │ │ ├── MainMenuPayloadUi.cs.meta │ │ │ │ │ │ ├── MainMenuViewModelUi.cs │ │ │ │ │ │ ├── MainMenuViewModelUi.cs.meta │ │ │ │ │ │ ├── MainMenuViewUi.cs │ │ │ │ │ │ └── MainMenuViewUi.cs.meta │ │ │ │ ├── MainScreen.meta │ │ │ │ ├── MainScreen │ │ │ │ │ ├── Subviews.meta │ │ │ │ │ ├── Subviews │ │ │ │ │ │ ├── TextView.meta │ │ │ │ │ │ └── TextView │ │ │ │ │ │ │ ├── ITextViewModel.cs │ │ │ │ │ │ │ ├── ITextViewModel.cs.meta │ │ │ │ │ │ │ ├── TextView.cs │ │ │ │ │ │ │ ├── TextView.cs.meta │ │ │ │ │ │ │ ├── TextViewModel.cs │ │ │ │ │ │ │ ├── TextViewModel.cs.meta │ │ │ │ │ │ │ ├── TextViewPayload.cs │ │ │ │ │ │ │ └── TextViewPayload.cs.meta │ │ │ │ │ ├── View.meta │ │ │ │ │ ├── View │ │ │ │ │ │ ├── MainScreenView.cs │ │ │ │ │ │ └── MainScreenView.cs.meta │ │ │ │ │ ├── ViewModel.meta │ │ │ │ │ └── ViewModel │ │ │ │ │ │ ├── IMainScreenViewModel.cs │ │ │ │ │ │ ├── IMainScreenViewModel.cs.meta │ │ │ │ │ │ ├── MainScreenViewModel.cs │ │ │ │ │ │ └── MainScreenViewModel.cs.meta │ │ │ │ ├── MainScreen3d.meta │ │ │ │ ├── MainScreen3d │ │ │ │ │ ├── MainScreen3dView.cs │ │ │ │ │ └── MainScreen3dView.cs.meta │ │ │ │ ├── PlayButton.meta │ │ │ │ ├── PlayButton │ │ │ │ │ ├── IPlayButtonViewModel.cs │ │ │ │ │ ├── IPlayButtonViewModel.cs.meta │ │ │ │ │ ├── PlayButtonView.cs │ │ │ │ │ ├── PlayButtonView.cs.meta │ │ │ │ │ ├── PlayButtonViewModel.cs │ │ │ │ │ └── PlayButtonViewModel.cs.meta │ │ │ │ ├── StatsChanger.meta │ │ │ │ ├── StatsChanger │ │ │ │ │ ├── IStatsChangerViewModel.cs │ │ │ │ │ ├── IStatsChangerViewModel.cs.meta │ │ │ │ │ ├── StatsChangerView.cs │ │ │ │ │ ├── StatsChangerView.cs.meta │ │ │ │ │ ├── StatsChangerViewModel.cs │ │ │ │ │ └── StatsChangerViewModel.cs.meta │ │ │ │ ├── SubviewsColorChanger.meta │ │ │ │ ├── SubviewsColorChanger │ │ │ │ │ ├── Color.meta │ │ │ │ │ ├── Color │ │ │ │ │ │ ├── ColorView.cs │ │ │ │ │ │ ├── ColorView.cs.meta │ │ │ │ │ │ ├── ColorViewModel.cs │ │ │ │ │ │ ├── ColorViewModel.cs.meta │ │ │ │ │ │ ├── IColorViewHandle.cs │ │ │ │ │ │ ├── IColorViewHandle.cs.meta │ │ │ │ │ │ ├── IColorViewModel.cs │ │ │ │ │ │ └── IColorViewModel.cs.meta │ │ │ │ │ ├── ColorChangerView.cs │ │ │ │ │ ├── ColorChangerView.cs.meta │ │ │ │ │ ├── ColorChangerViewModel.cs │ │ │ │ │ ├── ColorChangerViewModel.cs.meta │ │ │ │ │ ├── IColorChangerViewModel.cs │ │ │ │ │ └── IColorChangerViewModel.cs.meta │ │ │ │ ├── TimeCounter.meta │ │ │ │ └── TimeCounter │ │ │ │ │ ├── ITimeCounterViewModel.cs │ │ │ │ │ ├── ITimeCounterViewModel.cs.meta │ │ │ │ │ ├── TimeCounterView.cs │ │ │ │ │ ├── TimeCounterView.cs.meta │ │ │ │ │ ├── TimeCounterViewModel.cs │ │ │ │ │ └── TimeCounterViewModel.cs.meta │ │ │ ├── Models.meta │ │ │ ├── Models │ │ │ │ ├── Hand.meta │ │ │ │ ├── Hand │ │ │ │ │ ├── Model.meta │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── HandModel.cs │ │ │ │ │ │ ├── HandModel.cs.meta │ │ │ │ │ │ ├── IHandModel.cs │ │ │ │ │ │ ├── IHandModel.cs.meta │ │ │ │ │ │ ├── IHandMutableModel.cs │ │ │ │ │ │ └── IHandMutableModel.cs.meta │ │ │ │ │ ├── Service.meta │ │ │ │ │ └── Service │ │ │ │ │ │ ├── HandService.cs │ │ │ │ │ │ ├── HandService.cs.meta │ │ │ │ │ │ ├── IHandService.cs │ │ │ │ │ │ └── IHandService.cs.meta │ │ │ │ ├── ImageModel.meta │ │ │ │ ├── ImageModel │ │ │ │ │ ├── IImageModel.cs │ │ │ │ │ ├── IImageModel.cs.meta │ │ │ │ │ ├── IImageService.cs │ │ │ │ │ ├── IImageService.cs.meta │ │ │ │ │ ├── ImageModel.cs │ │ │ │ │ └── ImageModel.cs.meta │ │ │ │ ├── Time.meta │ │ │ │ └── Time │ │ │ │ │ ├── CallbackCancelSource.cs │ │ │ │ │ ├── CallbackCancelSource.cs.meta │ │ │ │ │ ├── ITimeManager.cs │ │ │ │ │ ├── ITimeManager.cs.meta │ │ │ │ │ ├── ITimeline.cs │ │ │ │ │ ├── ITimeline.cs.meta │ │ │ │ │ ├── TimeManager.cs │ │ │ │ │ ├── TimeManager.cs.meta │ │ │ │ │ ├── Timeline.cs │ │ │ │ │ └── Timeline.cs.meta │ │ │ ├── Services.meta │ │ │ └── Services │ │ │ │ ├── Game.meta │ │ │ │ ├── Game │ │ │ │ ├── GameService.cs │ │ │ │ ├── GameService.cs.meta │ │ │ │ ├── IGameService.cs │ │ │ │ └── IGameService.cs.meta │ │ │ │ ├── ImageLoaderService.meta │ │ │ │ ├── ImageLoaderService │ │ │ │ ├── IImageLoaderService.cs │ │ │ │ ├── IImageLoaderService.cs.meta │ │ │ │ ├── ImageLoaderService.cs │ │ │ │ └── ImageLoaderService.cs.meta │ │ │ │ ├── Startup.meta │ │ │ │ └── Startup │ │ │ │ ├── IStartupService.cs │ │ │ │ ├── IStartupService.cs.meta │ │ │ │ ├── StartupService.cs │ │ │ │ └── StartupService.cs.meta │ │ ├── NuGet.config │ │ ├── NuGet.config.meta │ │ ├── NuGet.meta │ │ ├── NuGet │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── NugetForUnity.dll │ │ │ │ └── NugetForUnity.dll.meta │ │ │ ├── LICENSE │ │ │ ├── LICENSE.meta │ │ │ ├── README.pdf │ │ │ ├── README.pdf.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── defaultIcon.png │ │ │ │ └── defaultIcon.png.meta │ │ ├── Packages.meta │ │ ├── Packages │ │ │ ├── AsyncReactAwait.0.11.2.meta │ │ │ ├── AsyncReactAwait.0.11.2 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── AsyncReactAwait.nuspec │ │ │ │ ├── AsyncReactAwait.nuspec.meta │ │ │ │ ├── LICENSE.md │ │ │ │ ├── LICENSE.md.meta │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ ├── AsyncReactAwait.dll │ │ │ │ │ ├── AsyncReactAwait.dll.meta │ │ │ │ │ ├── AsyncReactAwait.xml │ │ │ │ │ └── AsyncReactAwait.xml.meta │ │ │ ├── Castle.Core.5.0.0.meta │ │ │ ├── Castle.Core.5.0.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── ASL - Apache Software Foundation License.txt │ │ │ │ ├── ASL - Apache Software Foundation License.txt.meta │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CHANGELOG.md.meta │ │ │ │ ├── Castle.Core.nuspec │ │ │ │ ├── Castle.Core.nuspec.meta │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE.meta │ │ │ │ ├── castle-logo.png │ │ │ │ ├── castle-logo.png.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── Castle.Core.dll │ │ │ │ │ │ ├── Castle.Core.dll.meta │ │ │ │ │ │ ├── Castle.Core.xml │ │ │ │ │ │ └── Castle.Core.xml.meta │ │ │ │ ├── readme.txt │ │ │ │ └── readme.txt.meta │ │ │ ├── Fare.2.1.1.meta │ │ │ ├── Fare.2.1.1 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Fare.nuspec │ │ │ │ ├── Fare.nuspec.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard1.1.meta │ │ │ │ │ └── netstandard1.1 │ │ │ │ │ ├── Fare.dll │ │ │ │ │ ├── Fare.dll.meta │ │ │ │ │ ├── Fare.xml │ │ │ │ │ └── Fare.xml.meta │ │ │ ├── Microsoft.NETCore.Platforms.1.1.0.meta │ │ │ ├── Microsoft.NETCore.Platforms.1.1.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Microsoft.NETCore.Platforms.nuspec │ │ │ │ ├── Microsoft.NETCore.Platforms.nuspec.meta │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── ThirdPartyNotices.txt.meta │ │ │ │ ├── dotnet_library_license.txt │ │ │ │ ├── dotnet_library_license.txt.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard1.0.meta │ │ │ │ │ └── netstandard1.0 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ ├── runtime.json │ │ │ │ └── runtime.json.meta │ │ │ ├── NETStandard.Library.1.6.1.meta │ │ │ ├── NETStandard.Library.1.6.1 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── NETStandard.Library.nuspec │ │ │ │ ├── NETStandard.Library.nuspec.meta │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── ThirdPartyNotices.txt.meta │ │ │ │ ├── dotnet_library_license.txt │ │ │ │ └── dotnet_library_license.txt.meta │ │ │ ├── NSubstitute.4.4.0.meta │ │ │ ├── NSubstitute.4.4.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── NSubstitute.nuspec │ │ │ │ ├── NSubstitute.nuspec.meta │ │ │ │ ├── icon.png │ │ │ │ ├── icon.png.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ ├── NSubstitute.dll │ │ │ │ │ ├── NSubstitute.dll.meta │ │ │ │ │ ├── NSubstitute.xml │ │ │ │ │ └── NSubstitute.xml.meta │ │ │ ├── System.ComponentModel.Annotations.4.3.0.meta │ │ │ ├── System.ComponentModel.Annotations.4.3.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── System.ComponentModel.Annotations.nuspec │ │ │ │ ├── System.ComponentModel.Annotations.nuspec.meta │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── ThirdPartyNotices.txt.meta │ │ │ │ ├── dotnet_library_license.txt │ │ │ │ ├── dotnet_library_license.txt.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard1.4.meta │ │ │ │ │ └── netstandard1.4 │ │ │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ │ │ └── System.ComponentModel.Annotations.dll.meta │ │ │ ├── System.Diagnostics.EventLog.4.7.0.meta │ │ │ ├── System.Diagnostics.EventLog.4.7.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── System.Diagnostics.EventLog.nuspec │ │ │ │ ├── System.Diagnostics.EventLog.nuspec.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── System.Diagnostics.EventLog.dll │ │ │ │ │ │ ├── System.Diagnostics.EventLog.dll.meta │ │ │ │ │ │ ├── System.Diagnostics.EventLog.xml │ │ │ │ │ │ └── System.Diagnostics.EventLog.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ ├── useSharedDesignerContext.txt.meta │ │ │ │ ├── version.txt │ │ │ │ └── version.txt.meta │ │ │ ├── System.Reflection.TypeExtensions.4.1.0.meta │ │ │ ├── System.Reflection.TypeExtensions.4.1.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── System.Reflection.TypeExtensions.nuspec │ │ │ │ ├── System.Reflection.TypeExtensions.nuspec.meta │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── ThirdPartyNotices.txt.meta │ │ │ │ ├── dotnet_library_license.txt │ │ │ │ ├── dotnet_library_license.txt.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard1.5.meta │ │ │ │ │ └── netstandard1.5 │ │ │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ │ │ └── System.Reflection.TypeExtensions.dll.meta │ │ │ ├── System.Threading.Tasks.Extensions.4.3.0.meta │ │ │ ├── System.Threading.Tasks.Extensions.4.3.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── System.Threading.Tasks.Extensions.nuspec │ │ │ │ ├── System.Threading.Tasks.Extensions.nuspec.meta │ │ │ │ ├── ThirdPartyNotices.txt │ │ │ │ ├── ThirdPartyNotices.txt.meta │ │ │ │ ├── dotnet_library_license.txt │ │ │ │ ├── dotnet_library_license.txt.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard1.0.meta │ │ │ │ │ └── netstandard1.0 │ │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ │ ├── System.Threading.Tasks.Extensions.dll.meta │ │ │ │ │ ├── System.Threading.Tasks.Extensions.xml │ │ │ │ │ └── System.Threading.Tasks.Extensions.xml.meta │ │ │ ├── com.kekchpek.umvvm.meta │ │ │ └── com.kekchpek.umvvm │ │ │ │ ├── UnityMVVM.dll │ │ │ │ ├── UnityMVVM.dll.meta │ │ │ │ ├── package.json │ │ │ │ └── package.json.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── DOTween.meta │ │ │ └── DOTween │ │ │ │ ├── DOTween.XML │ │ │ │ ├── DOTween.XML.meta │ │ │ │ ├── DOTween.dll │ │ │ │ ├── DOTween.dll.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── DOTweenEditor.XML │ │ │ │ ├── DOTweenEditor.XML.meta │ │ │ │ ├── DOTweenEditor.dll │ │ │ │ ├── DOTweenEditor.dll.meta │ │ │ │ ├── Imgs.meta │ │ │ │ └── Imgs │ │ │ │ │ ├── DOTweenIcon.png │ │ │ │ │ ├── DOTweenIcon.png.meta │ │ │ │ │ ├── DOTweenMiniIcon.png │ │ │ │ │ ├── DOTweenMiniIcon.png.meta │ │ │ │ │ ├── Footer.png │ │ │ │ │ ├── Footer.png.meta │ │ │ │ │ ├── Footer_dark.png │ │ │ │ │ ├── Footer_dark.png.meta │ │ │ │ │ ├── Header.jpg │ │ │ │ │ └── Header.jpg.meta │ │ │ │ ├── Modules.meta │ │ │ │ ├── Modules │ │ │ │ ├── DOTweenModuleAudio.cs │ │ │ │ ├── DOTweenModuleAudio.cs.meta │ │ │ │ ├── DOTweenModuleEPOOutline.cs │ │ │ │ ├── DOTweenModuleEPOOutline.cs.meta │ │ │ │ ├── DOTweenModulePhysics.cs │ │ │ │ ├── DOTweenModulePhysics.cs.meta │ │ │ │ ├── DOTweenModulePhysics2D.cs │ │ │ │ ├── DOTweenModulePhysics2D.cs.meta │ │ │ │ ├── DOTweenModuleSprite.cs │ │ │ │ ├── DOTweenModuleSprite.cs.meta │ │ │ │ ├── DOTweenModuleUI.cs │ │ │ │ ├── DOTweenModuleUI.cs.meta │ │ │ │ ├── DOTweenModuleUnityVersion.cs │ │ │ │ ├── DOTweenModuleUnityVersion.cs.meta │ │ │ │ ├── DOTweenModuleUtils.cs │ │ │ │ └── DOTweenModuleUtils.cs.meta │ │ │ │ ├── readme.txt │ │ │ │ └── readme.txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── DOTweenSettings.asset │ │ │ ├── DOTweenSettings.asset.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Views.meta │ │ │ │ └── Views │ │ │ │ │ ├── CardView.prefab │ │ │ │ │ ├── CardView.prefab.meta │ │ │ │ │ ├── ColorChangerView.prefab │ │ │ │ │ ├── ColorChangerView.prefab.meta │ │ │ │ │ ├── CoolPopup.meta │ │ │ │ │ ├── CoolPopup │ │ │ │ │ ├── Close.anim │ │ │ │ │ ├── Close.anim.meta │ │ │ │ │ ├── CoolPopup.prefab │ │ │ │ │ ├── CoolPopup.prefab.meta │ │ │ │ │ ├── CoolPopupAnimator.controller │ │ │ │ │ └── CoolPopupAnimator.controller.meta │ │ │ │ │ ├── HandController.prefab │ │ │ │ │ ├── HandController.prefab.meta │ │ │ │ │ ├── LoadingPopup.prefab │ │ │ │ │ ├── LoadingPopup.prefab.meta │ │ │ │ │ ├── MainMenu3d.meta │ │ │ │ │ ├── MainMenu3d │ │ │ │ │ ├── Animations.meta │ │ │ │ │ ├── Animations │ │ │ │ │ │ ├── Exit.anim │ │ │ │ │ │ ├── Exit.anim.meta │ │ │ │ │ │ ├── Idle.anim │ │ │ │ │ │ ├── Idle.anim.meta │ │ │ │ │ │ ├── IdleCapsule.anim │ │ │ │ │ │ ├── IdleCapsule.anim.meta │ │ │ │ │ │ ├── IdleCube.anim │ │ │ │ │ │ ├── IdleCube.anim.meta │ │ │ │ │ │ ├── IdleCylinder.anim │ │ │ │ │ │ ├── IdleCylinder.anim.meta │ │ │ │ │ │ ├── IdleSphere.anim │ │ │ │ │ │ ├── IdleSphere.anim.meta │ │ │ │ │ │ ├── MoveToCapsule.anim │ │ │ │ │ │ ├── MoveToCapsule.anim.meta │ │ │ │ │ │ ├── MoveToCube.anim │ │ │ │ │ │ ├── MoveToCube.anim.meta │ │ │ │ │ │ ├── MoveToCylinder.anim │ │ │ │ │ │ ├── MoveToCylinder.anim.meta │ │ │ │ │ │ ├── MoveToSphere.anim │ │ │ │ │ │ └── MoveToSphere.anim.meta │ │ │ │ │ ├── MainMenu3dScene.prefab │ │ │ │ │ ├── MainMenu3dScene.prefab.meta │ │ │ │ │ ├── MainMenuCameraAnimationController.controller │ │ │ │ │ ├── MainMenuCameraAnimationController.controller.meta │ │ │ │ │ ├── PlaneMaterial.mat │ │ │ │ │ └── PlaneMaterial.mat.meta │ │ │ │ │ ├── MainMenuUi.meta │ │ │ │ │ ├── MainMenuUi │ │ │ │ │ ├── MainMenuUi.prefab │ │ │ │ │ └── MainMenuUi.prefab.meta │ │ │ │ │ ├── MainScreen3dView.prefab │ │ │ │ │ ├── MainScreen3dView.prefab.meta │ │ │ │ │ ├── MainScreenView.prefab │ │ │ │ │ ├── MainScreenView.prefab.meta │ │ │ │ │ ├── StatsChanger.prefab │ │ │ │ │ ├── StatsChanger.prefab.meta │ │ │ │ │ ├── TextView.prefab │ │ │ │ │ ├── TextView.prefab.meta │ │ │ │ │ ├── TimeCounter.meta │ │ │ │ │ └── TimeCounter │ │ │ │ │ ├── TimeCounter.prefab │ │ │ │ │ └── TimeCounter.prefab.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Attack_skill.png │ │ │ │ ├── Attack_skill.png.meta │ │ │ │ ├── Board.meta │ │ │ │ ├── Board │ │ │ │ ├── BackgroundIn.png │ │ │ │ ├── BackgroundIn.png.meta │ │ │ │ ├── BackgroundOut.png │ │ │ │ ├── BackgroundOut.png.meta │ │ │ │ ├── Boarder.png │ │ │ │ ├── Boarder.png.meta │ │ │ │ ├── Button.png │ │ │ │ ├── Button.png.meta │ │ │ │ ├── Corner.png │ │ │ │ ├── Corner.png.meta │ │ │ │ ├── CornerVert.png │ │ │ │ └── CornerVert.png.meta │ │ │ │ ├── Defense_skill.png │ │ │ │ ├── Defense_skill.png.meta │ │ │ │ ├── Mana.png │ │ │ │ ├── Mana.png.meta │ │ │ │ ├── advmap_fill.bmp │ │ │ │ ├── advmap_fill.bmp.meta │ │ │ │ ├── advmap_l.bmp │ │ │ │ ├── advmap_l.bmp.meta │ │ │ │ ├── advmap_lu.bmp │ │ │ │ └── advmap_lu.bmp.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── MainScene.unity │ │ │ └── MainScene.unity.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── EditorTests.meta │ │ │ └── EditorTests │ │ │ │ ├── CCG.Tests.Editor.asmdef │ │ │ │ ├── CCG.Tests.Editor.asmdef.meta │ │ │ │ ├── Core.meta │ │ │ │ ├── Core │ │ │ │ ├── BindableTestExtensions.cs │ │ │ │ ├── BindableTestExtensions.cs.meta │ │ │ │ ├── SubstituteValueProviders.meta │ │ │ │ ├── SubstituteValueProviders │ │ │ │ │ ├── PromiseValueProviderFactory.cs │ │ │ │ │ ├── PromiseValueProviderFactory.cs.meta │ │ │ │ │ ├── UnityObjectsValueProviderFactory.cs │ │ │ │ │ └── UnityObjectsValueProviderFactory.cs.meta │ │ │ │ ├── SynchronizationContext.meta │ │ │ │ ├── SynchronizationContext │ │ │ │ │ ├── TestSynchronizationContext.cs │ │ │ │ │ └── TestSynchronizationContext.cs.meta │ │ │ │ ├── TestApplication.cs │ │ │ │ ├── TestApplication.cs.meta │ │ │ │ ├── TestApplicationExtensions.cs │ │ │ │ ├── TestApplicationExtensions.cs.meta │ │ │ │ ├── TestInstaller.cs │ │ │ │ ├── TestInstaller.cs.meta │ │ │ │ ├── TestViewFactory.cs │ │ │ │ └── TestViewFactory.cs.meta │ │ │ │ ├── PrebuildSetup.cs │ │ │ │ ├── PrebuildSetup.cs.meta │ │ │ │ ├── Tests.meta │ │ │ │ └── Tests │ │ │ │ ├── CardsTests.cs │ │ │ │ ├── CardsTests.cs.meta │ │ │ │ ├── ColorChangerTests.cs │ │ │ │ ├── ColorChangerTests.cs.meta │ │ │ │ ├── CoolPopupTests.cs │ │ │ │ ├── CoolPopupTests.cs.meta │ │ │ │ ├── GameTests.cs │ │ │ │ ├── GameTests.cs.meta │ │ │ │ ├── MainMenuTests.cs │ │ │ │ ├── MainMenuTests.cs.meta │ │ │ │ ├── MainScreenTests.cs │ │ │ │ ├── MainScreenTests.cs.meta │ │ │ │ ├── StartupTests.cs │ │ │ │ ├── StartupTests.cs.meta │ │ │ │ ├── TestSubstitution.cs │ │ │ │ ├── TestSubstitution.cs.meta │ │ │ │ ├── TimeCounterTests.cs │ │ │ │ └── TimeCounterTests.cs.meta │ │ ├── TextMesh Pro.meta │ │ ├── TextMesh Pro │ │ │ ├── Documentation.meta │ │ │ ├── Documentation │ │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── LiberationSans - OFL.txt │ │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ │ ├── LiberationSans.ttf │ │ │ │ └── LiberationSans.ttf.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Fonts & Materials.meta │ │ │ │ ├── Fonts & Materials │ │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ │ ├── LineBreaking Following Characters.txt │ │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ │ ├── Sprite Assets.meta │ │ │ │ ├── Sprite Assets │ │ │ │ │ ├── EmojiOne.asset │ │ │ │ │ └── EmojiOne.asset.meta │ │ │ │ ├── Style Sheets.meta │ │ │ │ ├── Style Sheets │ │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ │ ├── TMP Settings.asset │ │ │ │ └── TMP Settings.asset.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ │ ├── TMP_Bitmap.shader │ │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ │ ├── TMP_SDF Overlay.shader │ │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ │ ├── TMP_SDF SSD.shader │ │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface.shader │ │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ │ ├── TMP_SDF.shader │ │ │ │ ├── TMP_SDF.shader.meta │ │ │ │ ├── TMP_Sprite.shader │ │ │ │ ├── TMP_Sprite.shader.meta │ │ │ │ ├── TMPro.cginc │ │ │ │ ├── TMPro.cginc.meta │ │ │ │ ├── TMPro_Mobile.cginc │ │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ │ ├── TMPro_Properties.cginc │ │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ │ ├── TMPro_Surface.cginc │ │ │ │ └── TMPro_Surface.cginc.meta │ │ │ ├── Sprites.meta │ │ │ └── Sprites │ │ │ │ ├── EmojiOne Attribution.txt │ │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ │ ├── EmojiOne.json │ │ │ │ ├── EmojiOne.json.meta │ │ │ │ ├── EmojiOne.png │ │ │ │ └── EmojiOne.png.meta │ │ ├── packages.config │ │ └── packages.config.meta │ ├── CCG.Tests.Editor.csproj.DotSettings │ ├── CCG.csproj.DotSettings │ ├── CCG.sln.DotSettings │ ├── CCGTests.csproj.DotSettings │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── MemorySettings.asset │ │ ├── NavMeshAreas.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── SceneTemplateSettings.json │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── TimelineSettings.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ └── XRSettings.asset └── QuickStartUnityMVVM │ ├── .gitignore │ ├── .idea │ └── .idea.QuickStartUnityMVVM │ │ └── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml │ ├── Assets │ ├── Libs.meta │ ├── Libs │ │ ├── AsyncReactAwait.dll │ │ ├── AsyncReactAwait.dll.meta │ │ ├── AsyncReactAwait.xml │ │ ├── AsyncReactAwait.xml.meta │ │ ├── UnityMVVM.dll │ │ └── UnityMVVM.dll.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Zenject.meta │ │ └── Zenject │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSE.txt.meta │ │ │ ├── ReadMe.url │ │ │ ├── ReadMe.url.meta │ │ │ ├── Source.meta │ │ │ ├── Source │ │ │ ├── Binding.meta │ │ │ ├── Binding │ │ │ │ ├── BindInfo.meta │ │ │ │ ├── BindInfo │ │ │ │ │ ├── BindInfo.cs │ │ │ │ │ ├── BindInfo.cs.meta │ │ │ │ │ ├── BindStatement.cs │ │ │ │ │ ├── BindStatement.cs.meta │ │ │ │ │ ├── FactoryBindInfo.cs │ │ │ │ │ ├── FactoryBindInfo.cs.meta │ │ │ │ │ ├── GameObjectCreationParameters.cs │ │ │ │ │ ├── GameObjectCreationParameters.cs.meta │ │ │ │ │ ├── MemoryPoolBindInfo.cs │ │ │ │ │ └── MemoryPoolBindInfo.cs.meta │ │ │ │ ├── Binders.meta │ │ │ │ ├── Binders │ │ │ │ │ ├── ArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── ArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── ConcreteBinders.meta │ │ │ │ │ ├── ConcreteBinders │ │ │ │ │ │ ├── ConcreteBinderGeneric.cs │ │ │ │ │ │ ├── ConcreteBinderGeneric.cs.meta │ │ │ │ │ │ ├── ConcreteBinderNonGeneric.cs │ │ │ │ │ │ ├── ConcreteBinderNonGeneric.cs.meta │ │ │ │ │ │ ├── ConcreteIdBinderGeneric.cs │ │ │ │ │ │ ├── ConcreteIdBinderGeneric.cs.meta │ │ │ │ │ │ ├── ConcreteIdBinderNonGeneric.cs │ │ │ │ │ │ └── ConcreteIdBinderNonGeneric.cs.meta │ │ │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── ConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── ConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── ConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── Conventions.meta │ │ │ │ │ ├── Conventions │ │ │ │ │ │ ├── ConventionAssemblySelectionBinder.cs │ │ │ │ │ │ ├── ConventionAssemblySelectionBinder.cs.meta │ │ │ │ │ │ ├── ConventionBindInfo.cs │ │ │ │ │ │ ├── ConventionBindInfo.cs.meta │ │ │ │ │ │ ├── ConventionFilterTypesBinder.cs │ │ │ │ │ │ ├── ConventionFilterTypesBinder.cs.meta │ │ │ │ │ │ ├── ConventionSelectTypesBinder.cs │ │ │ │ │ │ └── ConventionSelectTypesBinder.cs.meta │ │ │ │ │ ├── CopyNonLazyBinder.cs │ │ │ │ │ ├── CopyNonLazyBinder.cs.meta │ │ │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── DefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── Factory.meta │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder.meta │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder0.cs.meta │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder1.cs.meta │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder10.cs.meta │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder2.cs.meta │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder3.cs.meta │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder4.cs.meta │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder5.cs.meta │ │ │ │ │ │ │ ├── FactoryArgumentsToChoiceBinder6.cs │ │ │ │ │ │ │ └── FactoryArgumentsToChoiceBinder6.cs.meta │ │ │ │ │ │ ├── FactoryFromBinder.meta │ │ │ │ │ │ ├── FactoryFromBinder │ │ │ │ │ │ │ ├── FactoryFromBinder0.cs │ │ │ │ │ │ │ ├── FactoryFromBinder0.cs.meta │ │ │ │ │ │ │ ├── FactoryFromBinder1.cs │ │ │ │ │ │ │ ├── FactoryFromBinder1.cs.meta │ │ │ │ │ │ │ ├── FactoryFromBinder10.cs │ │ │ │ │ │ │ ├── FactoryFromBinder10.cs.meta │ │ │ │ │ │ │ ├── FactoryFromBinder2.cs │ │ │ │ │ │ │ ├── FactoryFromBinder2.cs.meta │ │ │ │ │ │ │ ├── FactoryFromBinder3.cs │ │ │ │ │ │ │ ├── FactoryFromBinder3.cs.meta │ │ │ │ │ │ │ ├── FactoryFromBinder4.cs │ │ │ │ │ │ │ ├── FactoryFromBinder4.cs.meta │ │ │ │ │ │ │ ├── FactoryFromBinder5.cs │ │ │ │ │ │ │ ├── FactoryFromBinder5.cs.meta │ │ │ │ │ │ │ ├── FactoryFromBinder6.cs │ │ │ │ │ │ │ ├── FactoryFromBinder6.cs.meta │ │ │ │ │ │ │ ├── SubContainerBinder.meta │ │ │ │ │ │ │ ├── SubContainerBinder │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder0.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder1.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder10.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder2.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder3.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder4.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder5.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinder6.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs │ │ │ │ │ │ │ │ ├── FactorySubContainerBinderBase.cs.meta │ │ │ │ │ │ │ │ ├── FactorySubContainerBinderWithParams.cs │ │ │ │ │ │ │ │ └── FactorySubContainerBinderWithParams.cs.meta │ │ │ │ │ │ │ ├── Untyped.meta │ │ │ │ │ │ │ └── Untyped │ │ │ │ │ │ │ │ ├── FactoryFromBinderUntyped.cs │ │ │ │ │ │ │ │ └── FactoryFromBinderUntyped.cs.meta │ │ │ │ │ │ ├── FactoryFromBinderBase.cs │ │ │ │ │ │ ├── FactoryFromBinderBase.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder.meta │ │ │ │ │ │ ├── FactoryToChoiceBinder │ │ │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs │ │ │ │ │ │ │ ├── DecoratorToChoiceFromBinder.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder0.cs │ │ │ │ │ │ │ ├── FactoryToChoiceBinder0.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder1.cs │ │ │ │ │ │ │ ├── FactoryToChoiceBinder1.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder10.cs │ │ │ │ │ │ │ ├── FactoryToChoiceBinder10.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder2.cs │ │ │ │ │ │ │ ├── FactoryToChoiceBinder2.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder3.cs │ │ │ │ │ │ │ ├── FactoryToChoiceBinder3.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder4.cs │ │ │ │ │ │ │ ├── FactoryToChoiceBinder4.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder5.cs │ │ │ │ │ │ │ ├── FactoryToChoiceBinder5.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceBinder6.cs │ │ │ │ │ │ │ └── FactoryToChoiceBinder6.cs.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder.meta │ │ │ │ │ │ ├── FactoryToChoiceIdBinder │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder0.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder1.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder10.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder2.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder3.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder4.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder5.cs.meta │ │ │ │ │ │ │ ├── FactoryToChoiceIdBinder6.cs │ │ │ │ │ │ │ └── FactoryToChoiceIdBinder6.cs.meta │ │ │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs │ │ │ │ │ │ ├── PlaceholderFactoryBindingFinalizer.cs.meta │ │ │ │ │ │ ├── Pooling.meta │ │ │ │ │ │ └── Pooling │ │ │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs │ │ │ │ │ │ │ ├── MemoryPoolBindingFinalizer.cs.meta │ │ │ │ │ │ │ ├── MemoryPoolExpandBinder.cs │ │ │ │ │ │ │ ├── MemoryPoolExpandBinder.cs.meta │ │ │ │ │ │ │ ├── MemoryPoolInitialSizeBinder.cs │ │ │ │ │ │ │ └── MemoryPoolInitialSizeBinder.cs.meta │ │ │ │ │ ├── FromBinders.meta │ │ │ │ │ ├── FromBinders │ │ │ │ │ │ ├── FromBinder.cs │ │ │ │ │ │ ├── FromBinder.cs.meta │ │ │ │ │ │ ├── FromBinderGeneric.cs │ │ │ │ │ │ ├── FromBinderGeneric.cs.meta │ │ │ │ │ │ ├── FromBinderNonGeneric.cs │ │ │ │ │ │ └── FromBinderNonGeneric.cs.meta │ │ │ │ │ ├── GameObject.meta │ │ │ │ │ ├── GameObject │ │ │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ │ ├── NameTransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ │ ├── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ │ └── TransformScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── IdBinder.cs │ │ │ │ │ ├── IdBinder.cs.meta │ │ │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── IdScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── IfNotBoundBinder.cs │ │ │ │ │ ├── IfNotBoundBinder.cs.meta │ │ │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── InstantiateCallbackConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── NonLazyBinder.cs │ │ │ │ │ ├── NonLazyBinder.cs.meta │ │ │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── ScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── SubContainerBinder.cs │ │ │ │ │ ├── SubContainerBinder.cs.meta │ │ │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ ├── WithKernelDefaultParentScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ │ ├── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs │ │ │ │ │ └── WithKernelScopeConcreteIdArgConditionCopyNonLazyBinder.cs.meta │ │ │ │ ├── BindingUtil.cs │ │ │ │ ├── BindingUtil.cs.meta │ │ │ │ ├── Finalizers.meta │ │ │ │ └── Finalizers │ │ │ │ │ ├── IBindingFinalizer.cs │ │ │ │ │ ├── IBindingFinalizer.cs.meta │ │ │ │ │ ├── NullBindingFinalizer.cs │ │ │ │ │ ├── NullBindingFinalizer.cs.meta │ │ │ │ │ ├── PrefabBindingFinalizer.cs │ │ │ │ │ ├── PrefabBindingFinalizer.cs.meta │ │ │ │ │ ├── PrefabResourceBindingFinalizer.cs │ │ │ │ │ ├── PrefabResourceBindingFinalizer.cs.meta │ │ │ │ │ ├── ProviderBindingFinalizer.cs │ │ │ │ │ ├── ProviderBindingFinalizer.cs.meta │ │ │ │ │ ├── ScopableBindingFinalizer.cs │ │ │ │ │ ├── ScopableBindingFinalizer.cs.meta │ │ │ │ │ ├── SingleProviderBindingFinalizer.cs │ │ │ │ │ ├── SingleProviderBindingFinalizer.cs.meta │ │ │ │ │ ├── SubContainerBindingFinalizer.cs │ │ │ │ │ ├── SubContainerBindingFinalizer.cs.meta │ │ │ │ │ ├── SubContainerPrefabBindingFinalizer.cs │ │ │ │ │ └── SubContainerPrefabBindingFinalizer.cs.meta │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── EditorStaticInstaller.cs │ │ │ │ ├── EditorStaticInstaller.cs.meta │ │ │ │ ├── EditorWindow.meta │ │ │ │ ├── EditorWindow │ │ │ │ │ ├── ZenjectEditorWindow.cs │ │ │ │ │ └── ZenjectEditorWindow.cs.meta │ │ │ │ ├── Editors.meta │ │ │ │ ├── Editors │ │ │ │ │ ├── ContextEditor.cs │ │ │ │ │ ├── ContextEditor.cs.meta │ │ │ │ │ ├── GameObjectContextEditor.cs │ │ │ │ │ ├── GameObjectContextEditor.cs.meta │ │ │ │ │ ├── ProjectContextEditor.cs │ │ │ │ │ ├── ProjectContextEditor.cs.meta │ │ │ │ │ ├── RunnableContextEditor.cs │ │ │ │ │ ├── RunnableContextEditor.cs.meta │ │ │ │ │ ├── SceneContextEditor.cs │ │ │ │ │ ├── SceneContextEditor.cs.meta │ │ │ │ │ ├── SceneDecoratorContextEditor.cs │ │ │ │ │ └── SceneDecoratorContextEditor.cs.meta │ │ │ │ ├── ObjectGraphVisualizer.cs │ │ │ │ ├── ObjectGraphVisualizer.cs.meta │ │ │ │ ├── SceneParentLoading.meta │ │ │ │ ├── SceneParentLoading │ │ │ │ │ ├── DefaultSceneContractConfig.cs │ │ │ │ │ ├── DefaultSceneContractConfig.cs.meta │ │ │ │ │ ├── SceneParentAutomaticLoader.cs │ │ │ │ │ └── SceneParentAutomaticLoader.cs.meta │ │ │ │ ├── UnityInspectorListEditor.cs │ │ │ │ ├── UnityInspectorListEditor.cs.meta │ │ │ │ ├── ZenMenuItems.cs │ │ │ │ ├── ZenMenuItems.cs.meta │ │ │ │ ├── ZenUnityEditorUtil.cs │ │ │ │ ├── ZenUnityEditorUtil.cs.meta │ │ │ │ ├── Zenject-Editor.asmdef │ │ │ │ └── Zenject-Editor.asmdef.meta │ │ │ ├── Factories.meta │ │ │ ├── Factories │ │ │ │ ├── FactoryProviderWrapper.cs │ │ │ │ ├── FactoryProviderWrapper.cs.meta │ │ │ │ ├── IFactory.cs │ │ │ │ ├── IFactory.cs.meta │ │ │ │ ├── KeyedFactory.cs │ │ │ │ ├── KeyedFactory.cs.meta │ │ │ │ ├── PlaceholderFactory.cs │ │ │ │ ├── PlaceholderFactory.cs.meta │ │ │ │ ├── PlaceholderFactoryBase.cs │ │ │ │ ├── PlaceholderFactoryBase.cs.meta │ │ │ │ ├── Pooling.meta │ │ │ │ ├── Pooling │ │ │ │ │ ├── IMemoryPool.cs │ │ │ │ │ ├── IMemoryPool.cs.meta │ │ │ │ │ ├── MemoryPool.cs │ │ │ │ │ ├── MemoryPool.cs.meta │ │ │ │ │ ├── MemoryPoolBase.cs │ │ │ │ │ ├── MemoryPoolBase.cs.meta │ │ │ │ │ ├── MonoMemoryPool.cs │ │ │ │ │ ├── MonoMemoryPool.cs.meta │ │ │ │ │ ├── MonoPoolableMemoryPool.cs │ │ │ │ │ ├── MonoPoolableMemoryPool.cs.meta │ │ │ │ │ ├── PoolFactory.cs │ │ │ │ │ ├── PoolFactory.cs.meta │ │ │ │ │ ├── PoolableMemoryPool.cs │ │ │ │ │ ├── PoolableMemoryPool.cs.meta │ │ │ │ │ ├── Static.meta │ │ │ │ │ ├── Static │ │ │ │ │ │ ├── PoolableStaticMemoryPool.cs │ │ │ │ │ │ ├── PoolableStaticMemoryPool.cs.meta │ │ │ │ │ │ ├── StaticMemoryPool.cs │ │ │ │ │ │ └── StaticMemoryPool.cs.meta │ │ │ │ │ ├── Util.meta │ │ │ │ │ └── Util │ │ │ │ │ │ ├── ArrayPool.cs │ │ │ │ │ │ ├── ArrayPool.cs.meta │ │ │ │ │ │ ├── DictionaryPool.cs │ │ │ │ │ │ ├── DictionaryPool.cs.meta │ │ │ │ │ │ ├── HashSetPool.cs │ │ │ │ │ │ ├── HashSetPool.cs.meta │ │ │ │ │ │ ├── ListPool.cs │ │ │ │ │ │ ├── ListPool.cs.meta │ │ │ │ │ │ ├── PoolCleanupChecker.cs │ │ │ │ │ │ ├── PoolCleanupChecker.cs.meta │ │ │ │ │ │ ├── StaticMemoryPoolRegistry.cs │ │ │ │ │ │ └── StaticMemoryPoolRegistry.cs.meta │ │ │ │ ├── PrefabFactory.cs │ │ │ │ ├── PrefabFactory.cs.meta │ │ │ │ ├── PrefabResourceFactory.cs │ │ │ │ └── PrefabResourceFactory.cs.meta │ │ │ ├── Injection.meta │ │ │ ├── Injection │ │ │ │ ├── InjectContext.cs │ │ │ │ ├── InjectContext.cs.meta │ │ │ │ ├── InjectUtil.cs │ │ │ │ ├── InjectUtil.cs.meta │ │ │ │ ├── LazyInject.cs │ │ │ │ └── LazyInject.cs.meta │ │ │ ├── Install.meta │ │ │ ├── Install │ │ │ │ ├── Contexts.meta │ │ │ │ ├── Contexts │ │ │ │ │ ├── Context.cs │ │ │ │ │ ├── Context.cs.meta │ │ │ │ │ ├── GameObjectContext.cs │ │ │ │ │ ├── GameObjectContext.cs.meta │ │ │ │ │ ├── ProjectContext.cs │ │ │ │ │ ├── ProjectContext.cs.meta │ │ │ │ │ ├── RunnableContext.cs │ │ │ │ │ ├── RunnableContext.cs.meta │ │ │ │ │ ├── SceneContext.cs │ │ │ │ │ ├── SceneContext.cs.meta │ │ │ │ │ ├── SceneDecoratorContext.cs │ │ │ │ │ ├── SceneDecoratorContext.cs.meta │ │ │ │ │ ├── StaticContext.cs │ │ │ │ │ └── StaticContext.cs.meta │ │ │ │ ├── IInstaller.cs │ │ │ │ ├── IInstaller.cs.meta │ │ │ │ ├── Installer.cs │ │ │ │ ├── Installer.cs.meta │ │ │ │ ├── InstallerBase.cs │ │ │ │ ├── InstallerBase.cs.meta │ │ │ │ ├── MonoInstaller.cs │ │ │ │ ├── MonoInstaller.cs.meta │ │ │ │ ├── MonoInstallerBase.cs │ │ │ │ ├── MonoInstallerBase.cs.meta │ │ │ │ ├── ScriptableObjectInstaller.cs │ │ │ │ ├── ScriptableObjectInstaller.cs.meta │ │ │ │ ├── ScriptableObjectInstallerBase.cs │ │ │ │ ├── ScriptableObjectInstallerBase.cs.meta │ │ │ │ ├── ZenjectBinding.cs │ │ │ │ ├── ZenjectBinding.cs.meta │ │ │ │ ├── ZenjectManagersInstaller.cs │ │ │ │ └── ZenjectManagersInstaller.cs.meta │ │ │ ├── Internal.meta │ │ │ ├── Internal │ │ │ │ ├── Assert.cs │ │ │ │ ├── Assert.cs.meta │ │ │ │ ├── Func.cs │ │ │ │ ├── Func.cs.meta │ │ │ │ ├── LinqExtensions.cs │ │ │ │ ├── LinqExtensions.cs.meta │ │ │ │ ├── Log.cs │ │ │ │ ├── Log.cs.meta │ │ │ │ ├── MiscExtensions.cs │ │ │ │ ├── MiscExtensions.cs.meta │ │ │ │ ├── PreserveAttribute.cs │ │ │ │ ├── PreserveAttribute.cs.meta │ │ │ │ ├── TypeExtensions.cs │ │ │ │ ├── TypeExtensions.cs.meta │ │ │ │ ├── TypeStringFormatter.cs │ │ │ │ ├── TypeStringFormatter.cs.meta │ │ │ │ ├── ValuePair.cs │ │ │ │ └── ValuePair.cs.meta │ │ │ ├── Main.meta │ │ │ ├── Main │ │ │ │ ├── BindingId.cs │ │ │ │ ├── BindingId.cs.meta │ │ │ │ ├── DiContainer.cs │ │ │ │ ├── DiContainer.cs.meta │ │ │ │ ├── IInstantiator.cs │ │ │ │ ├── IInstantiator.cs.meta │ │ │ │ ├── LazyInstanceInjector.cs │ │ │ │ ├── LazyInstanceInjector.cs.meta │ │ │ │ ├── LookupId.cs │ │ │ │ ├── LookupId.cs.meta │ │ │ │ ├── SingletonMarkRegistry.cs │ │ │ │ ├── SingletonMarkRegistry.cs.meta │ │ │ │ ├── ZenjectSettings.cs │ │ │ │ └── ZenjectSettings.cs.meta │ │ │ ├── Providers.meta │ │ │ ├── Providers │ │ │ │ ├── CachedOpenTypeProvider.cs │ │ │ │ ├── CachedOpenTypeProvider.cs.meta │ │ │ │ ├── CachedProvider.cs │ │ │ │ ├── CachedProvider.cs.meta │ │ │ │ ├── ComponentProviders.meta │ │ │ │ ├── ComponentProviders │ │ │ │ │ ├── AddToGameObjectComponentProviders.meta │ │ │ │ │ ├── AddToGameObjectComponentProviders │ │ │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs │ │ │ │ │ │ ├── AddToCurrentGameObjectComponentProvider.cs.meta │ │ │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs │ │ │ │ │ │ ├── AddToExistingGameObjectComponentProvider.cs.meta │ │ │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs │ │ │ │ │ │ ├── AddToGameObjectComponentProviderBase.cs.meta │ │ │ │ │ │ ├── AddToNewGameObjectComponentProvider.cs │ │ │ │ │ │ └── AddToNewGameObjectComponentProvider.cs.meta │ │ │ │ │ ├── GetFromGameObjectComponentProvider.cs │ │ │ │ │ ├── GetFromGameObjectComponentProvider.cs.meta │ │ │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs │ │ │ │ │ ├── GetFromGameObjectGetterComponentProvider.cs.meta │ │ │ │ │ ├── GetFromPrefabComponentProvider.cs │ │ │ │ │ ├── GetFromPrefabComponentProvider.cs.meta │ │ │ │ │ ├── InstantiateOnPrefabComponentProvider.cs │ │ │ │ │ └── InstantiateOnPrefabComponentProvider.cs.meta │ │ │ │ ├── Decorator.meta │ │ │ │ ├── Decorator │ │ │ │ │ ├── DecoratorProvider.cs │ │ │ │ │ └── DecoratorProvider.cs.meta │ │ │ │ ├── GameObjectProviders.meta │ │ │ │ ├── GameObjectProviders │ │ │ │ │ ├── EmptyGameObjectProvider.cs │ │ │ │ │ ├── EmptyGameObjectProvider.cs.meta │ │ │ │ │ ├── PrefabGameObjectProvider.cs │ │ │ │ │ └── PrefabGameObjectProvider.cs.meta │ │ │ │ ├── GetterProvider.cs │ │ │ │ ├── GetterProvider.cs.meta │ │ │ │ ├── IFactoryProvider.cs │ │ │ │ ├── IFactoryProvider.cs.meta │ │ │ │ ├── IProvider.cs │ │ │ │ ├── IProvider.cs.meta │ │ │ │ ├── IProviderExtensions.cs │ │ │ │ ├── IProviderExtensions.cs.meta │ │ │ │ ├── InstanceProvider.cs │ │ │ │ ├── InstanceProvider.cs.meta │ │ │ │ ├── MethodMultipleProviderUntyped.cs │ │ │ │ ├── MethodMultipleProviderUntyped.cs.meta │ │ │ │ ├── MethodProvider.cs │ │ │ │ ├── MethodProvider.cs.meta │ │ │ │ ├── MethodProviderMultiple.cs │ │ │ │ ├── MethodProviderMultiple.cs.meta │ │ │ │ ├── MethodProviderSimple.cs │ │ │ │ ├── MethodProviderSimple.cs.meta │ │ │ │ ├── MethodProviderUntyped.cs │ │ │ │ ├── MethodProviderUntyped.cs.meta │ │ │ │ ├── MethodProviderWithContainer.cs │ │ │ │ ├── MethodProviderWithContainer.cs.meta │ │ │ │ ├── PoolableMemoryPoolProvider.cs │ │ │ │ ├── PoolableMemoryPoolProvider.cs.meta │ │ │ │ ├── PrefabCreators.meta │ │ │ │ ├── PrefabCreators │ │ │ │ │ ├── IPrefabInstantiator.cs │ │ │ │ │ ├── IPrefabInstantiator.cs.meta │ │ │ │ │ ├── PrefabInstantiator.cs │ │ │ │ │ ├── PrefabInstantiator.cs.meta │ │ │ │ │ ├── PrefabInstantiatorCached.cs │ │ │ │ │ └── PrefabInstantiatorCached.cs.meta │ │ │ │ ├── PrefabProviders.meta │ │ │ │ ├── PrefabProviders │ │ │ │ │ ├── IPrefabProvider.cs │ │ │ │ │ ├── IPrefabProvider.cs.meta │ │ │ │ │ ├── PrefabProvider.cs │ │ │ │ │ ├── PrefabProvider.cs.meta │ │ │ │ │ ├── PrefabProviderCustom.cs │ │ │ │ │ ├── PrefabProviderCustom.cs.meta │ │ │ │ │ ├── PrefabProviderResource.cs │ │ │ │ │ └── PrefabProviderResource.cs.meta │ │ │ │ ├── ProviderUtil.cs │ │ │ │ ├── ProviderUtil.cs.meta │ │ │ │ ├── ResolveProvider.cs │ │ │ │ ├── ResolveProvider.cs.meta │ │ │ │ ├── ResourceProvider.cs │ │ │ │ ├── ResourceProvider.cs.meta │ │ │ │ ├── ScriptableObjectInstanceProvider.cs │ │ │ │ ├── ScriptableObjectInstanceProvider.cs.meta │ │ │ │ ├── ScriptableObjectResourceProvider.cs │ │ │ │ ├── ScriptableObjectResourceProvider.cs.meta │ │ │ │ ├── SubContainerCreators.meta │ │ │ │ ├── SubContainerCreators │ │ │ │ │ ├── ISubContainerCreator.cs │ │ │ │ │ ├── ISubContainerCreator.cs.meta │ │ │ │ │ ├── SubContainerCreatorBindInfo.cs │ │ │ │ │ ├── SubContainerCreatorBindInfo.cs.meta │ │ │ │ │ ├── SubContainerCreatorByInstaller.cs │ │ │ │ │ ├── SubContainerCreatorByInstaller.cs.meta │ │ │ │ │ ├── SubContainerCreatorByInstance.cs │ │ │ │ │ ├── SubContainerCreatorByInstance.cs.meta │ │ │ │ │ ├── SubContainerCreatorByInstanceGetter.cs │ │ │ │ │ ├── SubContainerCreatorByInstanceGetter.cs.meta │ │ │ │ │ ├── SubContainerCreatorByMethod.cs │ │ │ │ │ ├── SubContainerCreatorByMethod.cs.meta │ │ │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs │ │ │ │ │ ├── SubContainerCreatorByNewGameObjectDynamicContext.cs.meta │ │ │ │ │ ├── SubContainerCreatorByNewPrefab.cs │ │ │ │ │ ├── SubContainerCreatorByNewPrefab.cs.meta │ │ │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs │ │ │ │ │ ├── SubContainerCreatorByNewPrefabDynamicContext.cs.meta │ │ │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs │ │ │ │ │ ├── SubContainerCreatorByNewPrefabWithParams.cs.meta │ │ │ │ │ ├── SubContainerCreatorCached.cs │ │ │ │ │ ├── SubContainerCreatorCached.cs.meta │ │ │ │ │ ├── SubContainerCreatorDynamicContext.cs │ │ │ │ │ ├── SubContainerCreatorDynamicContext.cs.meta │ │ │ │ │ ├── SubContainerCreatorUtil.cs │ │ │ │ │ └── SubContainerCreatorUtil.cs.meta │ │ │ │ ├── SubContainerDependencyProvider.cs │ │ │ │ ├── SubContainerDependencyProvider.cs.meta │ │ │ │ ├── TransientProvider.cs │ │ │ │ └── TransientProvider.cs.meta │ │ │ ├── Runtime.meta │ │ │ ├── Runtime │ │ │ │ ├── AnimatorInterfaces.meta │ │ │ │ ├── AnimatorInterfaces │ │ │ │ │ ├── AnimatorIkHandlerManager.cs │ │ │ │ │ ├── AnimatorIkHandlerManager.cs.meta │ │ │ │ │ ├── AnimatorInstaller.cs │ │ │ │ │ ├── AnimatorInstaller.cs.meta │ │ │ │ │ ├── AnimatorMoveHandlerManager.cs │ │ │ │ │ ├── AnimatorMoveHandlerManager.cs.meta │ │ │ │ │ ├── IAnimatorIkHandler.cs │ │ │ │ │ ├── IAnimatorIkHandler.cs.meta │ │ │ │ │ ├── IAnimatorMoveHandler.cs │ │ │ │ │ └── IAnimatorMoveHandler.cs.meta │ │ │ │ ├── DisposableManager.cs │ │ │ │ ├── DisposableManager.cs.meta │ │ │ │ ├── GuiRenderableManager.cs │ │ │ │ ├── GuiRenderableManager.cs.meta │ │ │ │ ├── GuiRenderer.cs │ │ │ │ ├── GuiRenderer.cs.meta │ │ │ │ ├── InitializableManager.cs │ │ │ │ ├── InitializableManager.cs.meta │ │ │ │ ├── Kernels.meta │ │ │ │ ├── Kernels │ │ │ │ │ ├── DecoratableMonoKernel.cs │ │ │ │ │ ├── DecoratableMonoKernel.cs.meta │ │ │ │ │ ├── DefaultGameObjectKernel.cs │ │ │ │ │ ├── DefaultGameObjectKernel.cs.meta │ │ │ │ │ ├── Kernel.cs │ │ │ │ │ ├── Kernel.cs.meta │ │ │ │ │ ├── MonoKernel.cs │ │ │ │ │ ├── MonoKernel.cs.meta │ │ │ │ │ ├── ProjectKernel.cs │ │ │ │ │ ├── ProjectKernel.cs.meta │ │ │ │ │ ├── SceneKernel.cs │ │ │ │ │ └── SceneKernel.cs.meta │ │ │ │ ├── PoolableManager.cs │ │ │ │ ├── PoolableManager.cs.meta │ │ │ │ ├── SceneContextRegistry.cs │ │ │ │ ├── SceneContextRegistry.cs.meta │ │ │ │ ├── SceneContextRegistryAdderAndRemover.cs │ │ │ │ ├── SceneContextRegistryAdderAndRemover.cs.meta │ │ │ │ ├── TaskUpdater.cs │ │ │ │ ├── TaskUpdater.cs.meta │ │ │ │ ├── TickableManager.cs │ │ │ │ └── TickableManager.cs.meta │ │ │ ├── Usage.meta │ │ │ ├── Usage │ │ │ │ ├── Zenject-usage.dll │ │ │ │ ├── Zenject-usage.dll.meta │ │ │ │ ├── link.xml │ │ │ │ └── link.xml.meta │ │ │ ├── Util.meta │ │ │ ├── Util │ │ │ │ ├── ActionInstaller.cs │ │ │ │ ├── ActionInstaller.cs.meta │ │ │ │ ├── CheatSheet.cs │ │ │ │ ├── CheatSheet.cs.meta │ │ │ │ ├── DefaultGameObjectParentInstaller.cs │ │ │ │ ├── DefaultGameObjectParentInstaller.cs.meta │ │ │ │ ├── DisposeBlock.cs │ │ │ │ ├── DisposeBlock.cs.meta │ │ │ │ ├── ExecutionOrderInstaller.cs │ │ │ │ ├── ExecutionOrderInstaller.cs.meta │ │ │ │ ├── ProfileBlock.cs │ │ │ │ ├── ProfileBlock.cs.meta │ │ │ │ ├── ProfileTimers.cs │ │ │ │ ├── ProfileTimers.cs.meta │ │ │ │ ├── ReflectionInfoTypeInfoConverter.cs │ │ │ │ ├── ReflectionInfoTypeInfoConverter.cs.meta │ │ │ │ ├── ReflectionTypeInfo.cs │ │ │ │ ├── ReflectionTypeInfo.cs.meta │ │ │ │ ├── ReflectionUtil.cs │ │ │ │ ├── ReflectionUtil.cs.meta │ │ │ │ ├── TypeAnalyzer.cs │ │ │ │ ├── TypeAnalyzer.cs.meta │ │ │ │ ├── UnityUtil.cs │ │ │ │ ├── UnityUtil.cs.meta │ │ │ │ ├── ValidationUtil.cs │ │ │ │ ├── ValidationUtil.cs.meta │ │ │ │ ├── ZenAutoInjecter.cs │ │ │ │ ├── ZenAutoInjecter.cs.meta │ │ │ │ ├── ZenPools.cs │ │ │ │ ├── ZenPools.cs.meta │ │ │ │ ├── ZenReflectionTypeAnalyzer.cs │ │ │ │ ├── ZenReflectionTypeAnalyzer.cs.meta │ │ │ │ ├── ZenUtilInternal.cs │ │ │ │ ├── ZenUtilInternal.cs.meta │ │ │ │ ├── ZenjectException.cs │ │ │ │ ├── ZenjectException.cs.meta │ │ │ │ ├── ZenjectSceneLoader.cs │ │ │ │ ├── ZenjectSceneLoader.cs.meta │ │ │ │ ├── ZenjectStateMachineBehaviourAutoInjecter.cs │ │ │ │ └── ZenjectStateMachineBehaviourAutoInjecter.cs.meta │ │ │ ├── Validation.meta │ │ │ └── Validation │ │ │ │ ├── IValidatable.cs │ │ │ │ ├── IValidatable.cs.meta │ │ │ │ ├── ValidationMarker.cs │ │ │ │ └── ValidationMarker.cs.meta │ │ │ ├── Version.txt │ │ │ ├── Version.txt.meta │ │ │ ├── package.json │ │ │ ├── package.json.meta │ │ │ ├── zenject.asmdef │ │ │ └── zenject.asmdef.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── MyView.prefab │ │ └── MyView.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── CoreInstaller.cs │ │ ├── CoreInstaller.cs.meta │ │ ├── IMyViewModel.cs │ │ ├── IMyViewModel.cs.meta │ │ ├── MyViewBehaviour.cs │ │ ├── MyViewBehaviour.cs.meta │ │ ├── MyViewModel.cs │ │ ├── MyViewModel.cs.meta │ │ ├── StartupBehaviour.cs │ │ ├── StartupBehaviour.cs.meta │ │ ├── UnityMVVM.QuickStart.asmdef │ │ └── UnityMVVM.QuickStart.asmdef.meta │ ├── TextMesh Pro.meta │ └── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ ├── LiberationSans - OFL.txt │ │ ├── LiberationSans - OFL.txt.meta │ │ ├── LiberationSans.ttf │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ ├── Fonts & Materials.meta │ │ ├── Fonts & Materials │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ ├── LiberationSans SDF.asset │ │ │ └── LiberationSans SDF.asset.meta │ │ ├── LineBreaking Following Characters.txt │ │ ├── LineBreaking Following Characters.txt.meta │ │ ├── LineBreaking Leading Characters.txt │ │ ├── LineBreaking Leading Characters.txt.meta │ │ ├── Sprite Assets.meta │ │ ├── Sprite Assets │ │ │ ├── EmojiOne.asset │ │ │ └── EmojiOne.asset.meta │ │ ├── Style Sheets.meta │ │ ├── Style Sheets │ │ │ ├── Default Style Sheet.asset │ │ │ └── Default Style Sheet.asset.meta │ │ ├── TMP Settings.asset │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ ├── TMP_Bitmap-Mobile.shader │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ ├── TMP_Bitmap.shader │ │ ├── TMP_Bitmap.shader.meta │ │ ├── TMP_SDF Overlay.shader │ │ ├── TMP_SDF Overlay.shader.meta │ │ ├── TMP_SDF SSD.shader │ │ ├── TMP_SDF SSD.shader.meta │ │ ├── TMP_SDF-Mobile Masking.shader │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ ├── TMP_SDF-Mobile SSD.shader │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ ├── TMP_SDF-Mobile.shader │ │ ├── TMP_SDF-Mobile.shader.meta │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ ├── TMP_SDF-Surface.shader │ │ ├── TMP_SDF-Surface.shader.meta │ │ ├── TMP_SDF.shader │ │ ├── TMP_SDF.shader.meta │ │ ├── TMP_Sprite.shader │ │ ├── TMP_Sprite.shader.meta │ │ ├── TMPro.cginc │ │ ├── TMPro.cginc.meta │ │ ├── TMPro_Mobile.cginc │ │ ├── TMPro_Mobile.cginc.meta │ │ ├── TMPro_Properties.cginc │ │ ├── TMPro_Properties.cginc.meta │ │ ├── TMPro_Surface.cginc │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ ├── EmojiOne Attribution.txt │ │ ├── EmojiOne Attribution.txt.meta │ │ ├── EmojiOne.json │ │ ├── EmojiOne.json.meta │ │ ├── EmojiOne.png │ │ └── EmojiOne.png.meta │ ├── Packages │ ├── manifest.json │ └── packages-lock.json │ └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── README.md ├── VERSION ├── getVersion.py └── src ├── .editorconfig ├── .gitignore ├── .idea └── .idea.UnityMVVM │ └── .idea │ ├── .gitignore │ ├── .name │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── Tests ├── Tests.csproj └── TestsHelper.cs ├── UnityMVVM.sln ├── UnityMVVM.sln.DotSettings └── UnityMVVM ├── AssemblyParameters.cs ├── DI ├── Config │ └── MvvmContainerConfiguration.cs ├── DiContainerExtensions.cs ├── Environment │ ├── ContainerEnvironment.cs │ └── IContainerEnvironment.cs ├── IViewsContainerAdapter.cs ├── IViewsModelsContainerAdapter.cs ├── Mapper │ ├── IViewToViewModelMapper.cs │ ├── IViewToViewModelMutableMapper.cs │ └── ViewToViewModelMapper.cs ├── ViewModelsContainerAdapter.cs └── ViewsContainerAdapter.cs ├── IViewBehaviour.cs ├── IViewInitializer.cs ├── Libs ├── UnityEngine.CoreModule.dll ├── UnityEngine.CoreModule.xml ├── UnityEngine.dll ├── UnityEngine.xml ├── Zenject-ReflectionBaking.dll ├── Zenject-Signals.dll ├── Zenject-usage.dll ├── Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll ├── Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll ├── Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll ├── Zenject.ReflectionBaking.Mono.Cecil.dll └── Zenject.dll ├── Pool ├── IPoolableView.cs ├── IViewPool.cs └── ViewPool.cs ├── UnityMVVM.csproj ├── ViewBehaviour.cs ├── ViewManager ├── IViewManager.cs ├── ViewLayer │ ├── IViewLayer.cs │ └── ViewLayerImpl.cs ├── ViewManagerExtensions.cs └── ViewManagerImpl.cs └── ViewModelCore ├── IPayload.cs ├── IViewModel.cs ├── PrefabsProvider └── IViewsPrefabsProvider.cs ├── ViewModel.cs ├── ViewModelDelegates.cs └── ViewModelsFactory ├── IViewFactory.cs ├── IViewModelsFactory.cs ├── ViewFactory.cs └── ViewModelsFactory.cs /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store -------------------------------------------------------------------------------- /BuildForUnityProj.bat: -------------------------------------------------------------------------------- 1 | dotnet build src/UnityMVVM.sln --no-dependencies --output build 2 | copy src\UnityMVVM\build\UnityMVVM.dll MvvmUnityProj\CCG\Assets\Packages\com.kekchpek.umvvm\UnityMVVM.dll 3 | copy src\UnityMVVM\build\UnityMVVM.dll MvvmUnityProj\QuickStartUnityMVVM\Assets\Libs\UnityMVVM.dll -------------------------------------------------------------------------------- /BuildForUnityProj.command: -------------------------------------------------------------------------------- 1 | dotnet build src/UnityMVVM.sln --no-dependencies --property:OutputPath=build 2 | cp src/UnityMVVM/build/UnityMVVM.dll MvvmUnityProj/CCG/Assets/Packages/com.kekchpek.umvvm/UnityMVVM.dll 3 | cp src/UnityMVVM/build/UnityMVVM.dll MvvmUnityProj/QuickStartUnityMVVM/Assets/Libs/UnityMVVM.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/.idea/.idea.CCG/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /modules.xml 6 | /contentModel.xml 7 | /projectSettingsUpdater.xml 8 | /.idea.CCG.iml 9 | # Datasource local storage ignored files 10 | /dataSources/ 11 | /dataSources.local.xml 12 | # Editor-based HTTP Client requests 13 | /httpRequests/ 14 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/.idea/.idea.CCG/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/.idea/.idea.CCG/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/.idea/.idea.CCG/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba038f2e3a11fee408b50f9836a53790 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly:InternalsVisibleTo("CCGTests")] 4 | [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87c3d5c81ed84576baf1b5fbc7a9d13b 3 | timeCreated: 1650828896 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/CCG.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 105d4fe65ce0eb44faff561ef1a3574a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc46add874330c449aa84865c4ecce7c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Common/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f733064450a21614ea62b1f351f9f249 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Common/Components/CanvasColliderScaler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b21a28ceb971114e9ed3555afa60145 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48f49edd79e84d658418c86da6f25cd8 3 | timeCreated: 1650715546 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Config/ConfigData.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.Config 2 | { 3 | public static class ConfigData 4 | { 5 | public const int ImageInitBuffer = 30; 6 | 7 | public const float CardScale = 1f; 8 | 9 | public const int MaxCardsInHand = 10; 10 | } 11 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Config/ConfigData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 669d1a9b54bb475d9088effb7e885622 3 | timeCreated: 1650715564 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47b4b07c43644dc0b4c27dfcc7e0955b 3 | timeCreated: 1650724327 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50be5248a3e14d74a25c617f909c93c3 3 | timeCreated: 1698257162 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/CameraModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5667eba9cfe348f390184feeb4102ee8 3 | timeCreated: 1698264096 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/CameraService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf169a9942a4843969aa2e222a73 3 | timeCreated: 1698264241 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/ICameraModel.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Bindable; 2 | 3 | namespace CCG.Core.Camera 4 | { 5 | public interface ICameraModel 6 | { 7 | IBindable CurrentCamera { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/ICameraModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdc8b5c8f54740c287700d8de421a882 3 | timeCreated: 1698257169 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/ICameraMutableModel.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.Core.Camera 2 | { 3 | public interface ICameraMutableModel : ICameraModel 4 | { 5 | void SetCamera(UnityEngine.Camera camera); 6 | } 7 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/ICameraMutableModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60495ea9656a4bae9d5dc37cd97fd465 3 | timeCreated: 1698264081 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/ICameraService.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.Core.Camera 2 | { 3 | public interface ICameraService 4 | { 5 | void UseCamera(UnityEngine.Camera camera); 6 | } 7 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Camera/ICameraService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff36eff87b14457a95de54eb1320ea66 3 | timeCreated: 1698258338 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/CoreInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a362afd867fe4e6493730689af9b8975 3 | timeCreated: 1697978882 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/CustomViewManager.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d457b224787c4302b2c2726e00a9deba 3 | timeCreated: 1733066531 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/CustomViewManager/LogViewManagerDecorator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 530959aed4694e4ead761eaee4211e23 3 | timeCreated: 1733066545 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/GameInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ded9fefe8a1485995cfadb0dec0a5a9 3 | timeCreated: 1650193303 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Installers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bcf568bb2f34e14a8f5a8e8d04f9146 3 | timeCreated: 1694333098 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Installers/ImageSystemInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7d83845405843edb16f173dfe077989 3 | timeCreated: 1694333114 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/ResourcesPrefabProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3235b96c4d784874921f74cd14a07a4c 3 | timeCreated: 1733074082 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Screen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a916752f423a4e3b9f4a836bc48d995e 3 | timeCreated: 1674141649 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Screen/IScreenAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10cf6a8244364153973553e45c67c3b6 3 | timeCreated: 1674141659 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/Screen/ScreenAdapter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c11a5579995a4ed0a44eec8b43d929b9 3 | timeCreated: 1674141670 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/StartupBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0832dac4a48692c4db6e8488bb0c1891 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/ViewLayerIds.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.Core 2 | { 3 | public static class ViewLayerIds 4 | { 5 | public static string Main3d => "Main3d"; 6 | public static string MainUI => "MainUi"; 7 | public static string Popup => "Popup"; 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/ViewLayerIds.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d44be2cc8e814ca290fe0b3a7bd475c2 3 | timeCreated: 1674131867 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Core/ViewNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 187e90b06fe5484e9c8d8bb6b5805935 3 | timeCreated: 1674418455 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 783dffe713e666448adde39c1d1f10f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 433ec4f556127c349a65729ec8b05e5c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba5aee39c1d74d239b78a8b01d5f72eb 3 | timeCreated: 1674080714 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model/CardFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35336d8068cf4d7d90e9de44fb70fe98 3 | timeCreated: 1674079632 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model/CardMath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6abcef729f5e4ccabe7f6ea0020b74f5 3 | timeCreated: 1699495396 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model/CardModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c878b425378a45059e767a529163f8eb 3 | timeCreated: 1650739621 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model/ICardFactory.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | namespace CCG.MVVM.Card.Model 4 | { 5 | public interface ICardFactory 6 | { 7 | ICardMutableModel Create(int health, int attack, int mana, 8 | string description, string title, Texture2D icon); 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model/ICardFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90b3ea4c6ea44221b8a7f11f79bec4f3 3 | timeCreated: 1674079602 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model/ICardModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4453863b5e646bd8723b4e2a2e88333 3 | timeCreated: 1674079106 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/Model/ICardMutableModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58d07909d049473eb22d28a752dbc9c2 3 | timeCreated: 1674079173 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d32be31da3e429c8bf1b0fb79b99dfb 3 | timeCreated: 1674080701 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/View/CardView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2ef78017c364fcfba4b1bd804f36537 3 | timeCreated: 1650723518 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/View/ICardView.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.MVVM.Card.View 2 | { 3 | public interface ICardView 4 | { 5 | void OnEnterToBoard(); 6 | void OnExitFromBoard(); 7 | } 8 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/View/ICardView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 45a0684ec7134d6780bbdf03c1bc0640 3 | timeCreated: 1650747171 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/ViewModel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acb44b9c4cb544208ee84063e47ff3af 3 | timeCreated: 1674080709 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/ViewModel/CardPayload.cs: -------------------------------------------------------------------------------- 1 | using CCG.MVVM.Card.Model; 2 | 3 | namespace CCG.MVVM.Card.ViewModel 4 | { 5 | public class CardPayload : ICardPayload 6 | { 7 | 8 | public ICardModel Card { get; } 9 | 10 | public CardPayload(ICardModel card) 11 | { 12 | Card = card; 13 | } 14 | 15 | } 16 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/ViewModel/CardPayload.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c204806f4b7453f9f84800b8e886915 3 | timeCreated: 1650741404 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/ViewModel/CardViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 334b5d63987c4697a0da284630d90aca 3 | timeCreated: 1674079301 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/ViewModel/ICardPayload.cs: -------------------------------------------------------------------------------- 1 | using CCG.MVVM.Card.Model; 2 | using UnityMVVM.ViewModelCore; 3 | 4 | namespace CCG.MVVM.Card.ViewModel 5 | { 6 | public interface ICardPayload : IPayload 7 | { 8 | ICardModel Card { get; } 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/ViewModel/ICardPayload.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8c905179e854a3786260412c66385fa 3 | timeCreated: 1650741375 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Card/ViewModel/ICardViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87b1124a63a642cb93c3313d533c75b7 3 | timeCreated: 1650720918 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cd1e44008d834494b30c68c27593c5d3 3 | timeCreated: 1674078199 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/Components/BoardDetector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e76f43efaf9446597ccc5c3d5bee51d 3 | timeCreated: 1650745916 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ff096fb01a54bcb8139cc01d0f803f2 3 | timeCreated: 1675098755 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/CoolPopupException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aae6050d7f844416b879c7b054f588a5 3 | timeCreated: 1699262616 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/CoolPopupView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8697a0308e524e238d0e8ac986d47034 3 | timeCreated: 1675098993 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/CoolPopupViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b22bd5d264e64ea7a67273a2f7433291 3 | timeCreated: 1675099273 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/ICoolPopupViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b26dd0870fbb4a028f53d2cdc67840f8 3 | timeCreated: 1675098829 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/Payload.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dd3cc93a9ce42c1a49b423a63fadfff 3 | timeCreated: 1675166526 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/Payload/CoolPopupPayload.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.MVVM.CoolPopup.Payload 2 | { 3 | public class CoolPopupPayload : ICoolPopupPayload 4 | { 5 | public bool ThrowError { get; } 6 | 7 | public CoolPopupPayload(bool throwError) 8 | { 9 | ThrowError = throwError; 10 | } 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/Payload/CoolPopupPayload.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13faf5a02114483a99da943a494e5256 3 | timeCreated: 1675166568 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/Payload/ICoolPopupPayload.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM.ViewModelCore; 2 | 3 | namespace CCG.MVVM.CoolPopup.Payload 4 | { 5 | public interface ICoolPopupPayload : IPayload 6 | { 7 | bool ThrowError { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/CoolPopup/Payload/ICoolPopupPayload.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efbe86617f65486ea3c72a22a3b325c7 3 | timeCreated: 1675166544 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/HandController.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd7732bd1c3a429399b90da34a0a0801 3 | timeCreated: 1650820887 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/HandController/HandControllerView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a18f13cf8e5f48a3b67fd9d8e6abd42e 3 | timeCreated: 1650820683 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/HandController/HandControllerViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ab0160c02494eba8baec83291335107 3 | timeCreated: 1674126934 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/HandController/IHandControllerViewModel.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM.ViewModelCore; 2 | 3 | namespace CCG.MVVM.HandController 4 | { 5 | public interface IHandControllerViewModel : IViewModel 6 | { 7 | void AddRandomCardToHand(); 8 | void SwitchCardsPattern(); 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/HandController/IHandControllerViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b4a6da88d22a4db39d8cc0f8454acd0e 3 | timeCreated: 1674126905 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/LoadingPopup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ab7d1a875b5a6f4b8356279c4898e6e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/LoadingPopup/LoadingPopupView.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM; 2 | using UnityMVVM.ViewModelCore; 3 | 4 | namespace CCG.MVVM.LoadingPopup 5 | { 6 | public class LoadingPopupView : ViewBehaviour 7 | { 8 | 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/LoadingPopup/LoadingPopupView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aabf3440dc44879a9e0c0aa5939a6b3 3 | timeCreated: 1674417694 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a86c9c26a53f91439057bdd330e73d1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/3d.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3cce0580f8c4a4fb00b2d78967d0f9c 3 | timeCreated: 1674404134 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/3d/IMainMenuViewModel3d.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Bindable; 2 | using UnityMVVM.ViewModelCore; 3 | 4 | namespace CCG.MVVM.MainMenu 5 | { 6 | public interface IMainMenuViewModel3d : IViewModel 7 | { 8 | IBindable State { get; } 9 | 10 | void OnStateChangeCompleted(); 11 | } 12 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/3d/IMainMenuViewModel3d.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 050d81d12a754eefad7fa154643b6717 3 | timeCreated: 1674403231 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/3d/MainMenuView3d.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e5b29e2bbac411847b45473506bb9005 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/3d/MainMenuViewModel3d.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8f67c9740ea4d3b9a0091c878e66941 3 | timeCreated: 1674403443 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/IMainMenu3dController.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Promises; 2 | 3 | namespace CCG.MVVM.MainMenu 4 | { 5 | public interface IMainMenu3dController 6 | { 7 | IPromise SetState(MainMenuState state); 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/IMainMenu3dController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a8eb87275504a3787356d293d248509 3 | timeCreated: 1674403345 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/MainMenuState.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.MVVM.MainMenu 2 | { 3 | public enum MainMenuState 4 | { 5 | None, 6 | Cube, 7 | Cylinder, 8 | Sphere, 9 | Capsule 10 | } 11 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/MainMenuState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43c5b876e6774b238364f796ec3b1537 3 | timeCreated: 1674403369 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/ui.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9961bd3f5a5a49078444bc040a32c3f2 3 | timeCreated: 1674404157 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/ui/IMainMenuPayloadUi.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM.ViewModelCore; 2 | 3 | namespace CCG.MVVM.MainMenu 4 | { 5 | public interface IMainMenuPayloadUi : IPayload 6 | { 7 | IMainMenu3dController Controller { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/ui/IMainMenuPayloadUi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 851d19cf128f409e8b7d164f7e5e97ab 3 | timeCreated: 1674407018 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/ui/IMainMenuViewModelUi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b5cf30666034af59fa3650dc9643823 3 | timeCreated: 1674404231 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/ui/MainMenuPayloadUi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90ec00b252ea4831946cb20f6a186698 3 | timeCreated: 1674407052 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/ui/MainMenuViewModelUi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c784eeca55a4078b8575baabf3eb096 3 | timeCreated: 1674407138 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainMenu/ui/MainMenuViewUi.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 869663c3902d40599316ee8b36f212e5 3 | timeCreated: 1674404176 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a51aaf87a5c4efb83de1c89cf9cfbdd 3 | timeCreated: 1674131468 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/Subviews.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93453d549892466f9d4473fa03b6bf1e 3 | timeCreated: 1734262087 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/Subviews/TextView.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3675c00c6db8482eb76d1ba395d86716 3 | timeCreated: 1734262122 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/Subviews/TextView/ITextViewModel.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Bindable; 2 | using UnityMVVM.ViewModelCore; 3 | 4 | namespace CCG.MVVM.MainScreen.Subviews.TextView 5 | { 6 | public interface ITextViewModel : IViewModel 7 | { 8 | IBindable Text { get; } 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/Subviews/TextView/ITextViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07ec36666f7b4f6abd3c6d2720646c5a 3 | timeCreated: 1734262129 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/Subviews/TextView/TextView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88da55b4584c4941b19f2855b1d8a9c2 3 | timeCreated: 1734262319 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/Subviews/TextView/TextViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96e94d6e66404e2e8eb6b252f8d9b54c 3 | timeCreated: 1734262187 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/Subviews/TextView/TextViewPayload.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e8344b456c24bc9ac4cb3cf7b740a4f 3 | timeCreated: 1734262254 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/View.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0a5272dbba94780938ac4635ccd321c 3 | timeCreated: 1674131474 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/View/MainScreenView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3745f8d5345644afa11375fdf73e48ba 3 | timeCreated: 1674131555 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/ViewModel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cec8c823a8f04a66a571bb3a442a70aa 3 | timeCreated: 1674131481 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/ViewModel/IMainScreenViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9d1e49684e942b093cf526289591842 3 | timeCreated: 1674131572 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen/ViewModel/MainScreenViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: effcdec44cb741888b981dcc7bfcf58b 3 | timeCreated: 1674131581 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen3d.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad82935d69a45b9afa72f4636a686d5 3 | timeCreated: 1698350932 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/MainScreen3d/MainScreen3dView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0d8a86c4bac4493833dd992ca4d27bf 3 | timeCreated: 1698350954 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/PlayButton.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a59447561c04257b5813e295aea3f84 3 | timeCreated: 1684306119 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/PlayButton/IPlayButtonViewModel.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM.ViewModelCore; 2 | 3 | namespace CCG.MVVM.PlayButton 4 | { 5 | public interface IPlayButtonViewModel : IViewModel 6 | { 7 | void OnClicked(); 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/PlayButton/IPlayButtonViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f78e9f72adef479b8a3e823db2b3204e 3 | timeCreated: 1684306152 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/PlayButton/PlayButtonView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 578d47f1349a4970972fab10b7486990 3 | timeCreated: 1684306165 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/PlayButton/PlayButtonViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53b434011912446b98ff23c0d830881d 3 | timeCreated: 1684307386 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/StatsChanger.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc83125426764efaba5afa62daed55e4 3 | timeCreated: 1650812751 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/StatsChanger/IStatsChangerViewModel.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM.ViewModelCore; 2 | 3 | namespace CCG.MVVM.StatsChanger 4 | { 5 | public interface IStatsChangerViewModel : IViewModel 6 | { 7 | void ChangeCardStat(); 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/StatsChanger/IStatsChangerViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a84171f5235f4750944547e683c0cb55 3 | timeCreated: 1650812762 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/StatsChanger/StatsChangerView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34babf224717480ea62917efe0c8106b 3 | timeCreated: 1650814439 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/StatsChanger/StatsChangerViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 285f01b1cac24e2fa2a8ee00491a2aca 3 | timeCreated: 1650813514 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 61d8985aa6054ee0b227d087390f2056 3 | timeCreated: 1738334955 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/Color.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2767efaf8dcd408ea6a58c476b794c3f 3 | timeCreated: 1738334975 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/Color/ColorView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 396465f23ad54293a6513b29375946b3 3 | timeCreated: 1738335578 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/Color/ColorViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 211204273eee4738abfe97132ea657c0 3 | timeCreated: 1738335496 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/Color/IColorViewHandle.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM.ViewModelCore; 2 | 3 | namespace CCG.MVVM.SubviewsColorChanger.Color 4 | { 5 | public interface IColorViewHandle : IViewModel 6 | { 7 | void SetColor(UnityEngine.Color color); 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/Color/IColorViewHandle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7051e4c315994ba59395da24236fbcdb 3 | timeCreated: 1738335010 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/Color/IColorViewModel.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Bindable; 2 | using UnityMVVM.ViewModelCore; 3 | 4 | namespace CCG.MVVM.SubviewsColorChanger.Color 5 | { 6 | public interface IColorViewModel : IViewModel 7 | { 8 | 9 | IBindable Color { get; } 10 | 11 | } 12 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/Color/IColorViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c0bf3c453ff40f8b70cb27c7b9041ed 3 | timeCreated: 1738334991 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/ColorChangerView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0095b24504804c2a8e2e14738fadc8d7 3 | timeCreated: 1738338037 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/ColorChangerViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82182e03a01c426ebe7b5c587026e7a6 3 | timeCreated: 1738335859 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/IColorChangerViewModel.cs: -------------------------------------------------------------------------------- 1 | using UnityMVVM.ViewModelCore; 2 | 3 | namespace CCG.MVVM.SubviewsColorChanger 4 | { 5 | public interface IColorChangerViewModel : IViewModel 6 | { 7 | void ChangeColor(); 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/SubviewsColorChanger/IColorChangerViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 560f3114f72848c990a2cedabc40e3be 3 | timeCreated: 1738335691 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/TimeCounter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 858b0d8c872844fe824f86bae1ff248a 3 | timeCreated: 1701522304 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/TimeCounter/ITimeCounterViewModel.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Bindable; 2 | using UnityMVVM.ViewModelCore; 3 | 4 | namespace CCG.MVVM.TimeCounter 5 | { 6 | public interface ITimeCounterViewModel : IViewModel 7 | { 8 | IBindable TimeInSeconds { get; } 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/TimeCounter/ITimeCounterViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ba53f1437f84e218ae1a6bf7aba1746 3 | timeCreated: 1701522315 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/TimeCounter/TimeCounterView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: edbf4af8081d47d6b66068b9ffda2d94 3 | timeCreated: 1701522327 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/MVVM/TimeCounter/TimeCounterViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e06e99e8a25c4408aa127da09f0dc903 3 | timeCreated: 1701522365 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd5a670b9be34375a6d83be4eecf0732 3 | timeCreated: 1650199136 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89d9864e0df44ae49dfb5777ba7283d8 3 | timeCreated: 1650746278 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Model.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7cf4288e57f94fa5ac42d132fe3da43b 3 | timeCreated: 1674120710 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Model/HandModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 559c68aff92247b29cba4bb01439593b 3 | timeCreated: 1650746305 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Model/IHandModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40ca4b72f8ca4de398d0df1989a9b3b1 3 | timeCreated: 1650746572 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Model/IHandMutableModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 87ea1988b69d4117996e607f14c5ebde 3 | timeCreated: 1674120674 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Service.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1f1d70b33884d5092687f11cc8d1b22 3 | timeCreated: 1674120732 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Service/HandService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8afc9361c96a4266a3912a793e654ee2 3 | timeCreated: 1650825395 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Service/IHandService.cs: -------------------------------------------------------------------------------- 1 | namespace CCG.Models.Hand.Service 2 | { 3 | public interface IHandService 4 | { 5 | void AddRandomCardToHand(); 6 | void SwitchCardsPattern(); 7 | void ChangeRandomCardStats(); 8 | void ClearHand(); 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Hand/Service/IHandService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 985c27b4e02f4ae1a082e1f588b6f615 3 | timeCreated: 1674120749 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/ImageModel.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40fd81b4e52f4835b5f847bbd215b7bf 3 | timeCreated: 1650199229 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/ImageModel/IImageModel.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Promises; 2 | using UnityEngine; 3 | 4 | namespace CCG.Models.ImageModel 5 | { 6 | public interface IImageModel 7 | { 8 | Texture2D GetImage(string imageId); 9 | string[] GetAllImageIds(); 10 | } 11 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/ImageModel/IImageModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2670c9b8a7dc4694990b0f14bbbee0d6 3 | timeCreated: 1650199238 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/ImageModel/IImageService.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Promises; 2 | 3 | namespace CCG.Models.ImageModel 4 | { 5 | public interface IImageService 6 | { 7 | IPromise LoadImages(); 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/ImageModel/IImageService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a2362f6c1794d7f8adc1189324c0d8e 3 | timeCreated: 1683700272 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/ImageModel/ImageModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a8f3fb8af474bcb983f1db6f133c15d 3 | timeCreated: 1650199249 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Time.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f18bdcff9db940cf88c036673c12554 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Time/CallbackCancelSource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4265e8b3b7b44dea883a6ebda1268681 3 | timeCreated: 1701478078 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Time/ITimeManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3659203029d4cddbda45ca2fd8be0d2 3 | timeCreated: 1691434491 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Time/ITimeline.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SurvivedWarrior.MVVM.Models.Time 4 | { 5 | public interface ITimeline 6 | { 7 | void AddTime(long ticks); 8 | CallbackCancelSource AddCallbackIn(long ticksDelay, Action callback); 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Time/ITimeline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d60e2d8156a84d80b2035f4ffa8d89f8 3 | timeCreated: 1701476376 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Time/TimeManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ec9975d902844bc842e239721b14d88 3 | timeCreated: 1691434491 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Models/Time/Timeline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0988d95019e45598d05115538c29d92 3 | timeCreated: 1701476530 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 673371ce7c0149ff9ae5d8bda9ec1957 3 | timeCreated: 1650194494 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Game.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28a36c7affbd428aadecdc8845374aa2 3 | timeCreated: 1698350741 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Game/GameService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1a439de38544b42a7d01d3801cc56f6 3 | timeCreated: 1698350766 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Game/IGameService.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Promises; 2 | 3 | namespace CCG.Services.Game 4 | { 5 | public interface IGameService 6 | { 7 | IPromise StartGame(); 8 | IPromise OpenMainMenu(); 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Game/IGameService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a1afa206e0f43aeaa8f5e11228e56ad 3 | timeCreated: 1698350752 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/ImageLoaderService.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f47a55d27cfb48989c792a81fff4b8af 3 | timeCreated: 1650198019 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/ImageLoaderService/IImageLoaderService.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Promises; 2 | using UnityEngine; 3 | 4 | namespace CCG.Services.ImageLoaderService 5 | { 6 | public interface IImageLoaderService 7 | { 8 | IPromise LoadRandomImage(); 9 | } 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/ImageLoaderService/IImageLoaderService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee096dd16d8f4ce8a8cb9a74459eade2 3 | timeCreated: 1650194715 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/ImageLoaderService/ImageLoaderService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57ce6cb9382043df916ffdd0cfccfda2 3 | timeCreated: 1650195090 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Startup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07391da234854a39a70c5435b31e3e22 3 | timeCreated: 1697989555 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Startup/IStartupService.cs: -------------------------------------------------------------------------------- 1 | using AsyncReactAwait.Promises; 2 | 3 | namespace CCG.Services.Startup 4 | { 5 | public interface IStartupService 6 | { 7 | IPromise Startup(); 8 | } 9 | } -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Startup/IStartupService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f67143084ce45b7b1177b7e71aeed2c 3 | timeCreated: 1697989574 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Code/Services/Startup/StartupService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab9bdbac773741ef9369bc3efa7153f3 3 | timeCreated: 1697989587 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbf134857daf7df428aa31cdd055514f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3fad56c531ac5a4db190a745f589a8e 3 | folderAsset: yes 4 | timeCreated: 1510280304 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet/Editor/NugetForUnity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/NuGet/Editor/NugetForUnity.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d9014b99ad06af428514a5902d29ff3 3 | timeCreated: 1573248500 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/NuGet/README.pdf -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet/README.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83c5d2001771f15429a88d67e81366d6 3 | timeCreated: 1517876157 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1738075a39a390447b7a620ca6962142 3 | folderAsset: yes 4 | timeCreated: 1510280362 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/NuGet/Resources/defaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/NuGet/Resources/defaultIcon.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 561000f68bb5e514c89a22fbdc88cd38 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2322c5cc81d904938ab4118475ecc175 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/AsyncReactAwait.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd18d6bd21db14818a5a1ffad3116d93 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/LICENSE.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 077d9ba138830419fbee1161a110fbe5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8e2e0d265bb8410d9782e1f6cac7993 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c6445c1b032a4b40b00efce36a180f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/lib/netstandard2.1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8cc6388d1150494db708898e6073a34 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/lib/netstandard2.1/AsyncReactAwait.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/lib/netstandard2.1/AsyncReactAwait.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/AsyncReactAwait.0.11.2/lib/netstandard2.1/AsyncReactAwait.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bdf63adb4f934f36aaa6723907f1f59 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 171fec4e79c7948e3a090880bf1a28dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/ASL - Apache Software Foundation License.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe59aed7056b743aab9eb76bba3f1f2b 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/CHANGELOG.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3efa7592e93f4694b622e1d9840bc53 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/Castle.Core.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1a6b0400fac34c10bec78cacb555297 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/LICENSE.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36dcb8b814de546228c6ec0ec2fe57e1 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/castle-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/castle-logo.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3d5dbde7c1bd4377b978fba6e24b15f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/lib/netstandard2.1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5d5fb0eac3384f3baf6883f306163f8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/lib/netstandard2.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/lib/netstandard2.1/Castle.Core.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/lib/netstandard2.1/Castle.Core.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a631002d34604fc99616b40e10b9163 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Castle.Core.5.0.0/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 92033227768214029925c833e82b444c 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0e66022cf24b445caf02592028e1685 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/Fare.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f50592806b3414fc28090b3d95d948e3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbd098b0ac04b4f0b8866d9005e498ee 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/lib/netstandard1.1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 728c86f4653d14168ae6ec9783667a87 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/lib/netstandard1.1/Fare.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/lib/netstandard1.1/Fare.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Fare.2.1.1/lib/netstandard1.1/Fare.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ea642951d42d4e88ae2910fd3de6c12 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acc284781e3312b4095b930a3e40a5ca 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/Microsoft.NETCore.Platforms.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddd4fd21067c844aca9d55b08e302c00 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/ThirdPartyNotices.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59a03465a168943d3a3d6fdafee32827 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/dotnet_library_license.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59ef1d5c0b5dc426dbcd8d16cfc5cb36 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce0c16196b6634fa18d0bc6bf655644c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/lib/netstandard1.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af6f4ad10bb8b459493898f96edbdbcc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/lib/netstandard1.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/lib/netstandard1.0/_._ -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/lib/netstandard1.0/_._.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4991168445e194d96a89f7984334b26b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/Microsoft.NETCore.Platforms.1.1.0/runtime.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af81fb316709145489c5aeb3ac8b698d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NETStandard.Library.1.6.1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c59299ba6b0db7649ad55fcb4c930d31 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NETStandard.Library.1.6.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/NETStandard.Library.1.6.1/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NETStandard.Library.1.6.1/NETStandard.Library.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b8a51f6a075541e28bddf9dfaaae8d3 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NETStandard.Library.1.6.1/ThirdPartyNotices.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 15ddc11975bcd458e9c296ebdcc11d44 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NETStandard.Library.1.6.1/dotnet_library_license.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 468932b5af2604dddaff85d8b0f57531 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc86424eb96a14192a8d0dc83ac80469 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/NSubstitute.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75674d55f76064244af11b115574e40f 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/icon.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6c80656239e34452e87cde830e5b5838 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/lib/netstandard2.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9865afb135597479285e4204a7a6b905 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/lib/netstandard2.0/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/lib/netstandard2.0/NSubstitute.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/NSubstitute.4.4.0/lib/netstandard2.0/NSubstitute.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc59389461ab847eda2dd02648b4f467 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b1051e92f39f493a9949ecfb547bf11 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/System.ComponentModel.Annotations.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 949c8659af2d44a9bacd3dabc9fd2811 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/ThirdPartyNotices.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c498f6aa21c0b469dbc25fdb48696e95 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/dotnet_library_license.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54ffb97126c0c4573afa60f29f7671c0 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d104b016b52e48918b8dc7f86391f39 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/lib/netstandard1.4.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 526844e02ddd14bd0b3f80708320fb02 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/lib/netstandard1.4/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.ComponentModel.Annotations.4.3.0/lib/netstandard1.4/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ce26e2b6b53f4d63b4638dc880a70c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/LICENSE.TXT.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f732f0277a81e4aa69e7e10691425d56 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/System.Diagnostics.EventLog.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29fe91b8d3a8447b3a25a05e6a1b2b37 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/THIRD-PARTY-NOTICES.TXT.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1314527baa114433af2241466f698c8 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33d0cae779bd944c59eb777476528c1a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/lib/netstandard2.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e8990b0b4e0645a9867445c5bbe5727 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/lib/netstandard2.0/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/lib/netstandard2.0/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/lib/netstandard2.0/System.Diagnostics.EventLog.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df4e398f6e842455a9bd35530544e4ef 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/useSharedDesignerContext.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f1b2f26bbc5f4c07876b8d77099c71f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Diagnostics.EventLog.4.7.0/version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a278d6411caf426196ba54f110b0aad 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13ada48e9fc12409aa61e38aaf662b1f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/System.Reflection.TypeExtensions.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a58f6f335612472f8188c4ede6f8ada 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/ThirdPartyNotices.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f4f28ba0208545a79d301c038d79de6 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/dotnet_library_license.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57db64260ee8a4c948df892f0cf2c312 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4002a1b74fe5248339919b1241f84839 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/lib/netstandard1.5.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fed78dd77b8045669b26d1bb90963fd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/lib/netstandard1.5/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.Reflection.TypeExtensions.4.1.0/lib/netstandard1.5/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6725203dd8dc34032b850bbb2fb858da 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/System.Threading.Tasks.Extensions.nuspec.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f7785c4b71b64a02b00397643ba9f61 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/ThirdPartyNotices.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf7c701fd4ec2414a888ccb02e41dd01 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/dotnet_library_license.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dec36f6df9628478abac9b33e595d66f 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/lib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 528ce2ed4f1d74756a1a364b719615cd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f567e034fc56c408eb2f34137da455c3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/System.Threading.Tasks.Extensions.4.3.0/lib/netstandard1.0/System.Threading.Tasks.Extensions.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65df752b9183c42b0bea9838537bd9b5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/com.kekchpek.umvvm.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a15014d1c9be943a58649a1177768a0a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/com.kekchpek.umvvm/UnityMVVM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Packages/com.kekchpek.umvvm/UnityMVVM.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Packages/com.kekchpek.umvvm/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f01e10d657a2c40b19246aef9a610047 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9b108af1340fbb49abc7958e3f19ab7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b35f927ff329809448267e41110ed7e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/DOTween.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ab7a25c2457d8e4fa63495559f6cfa2 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Plugins/DOTween/DOTween.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447c0b16abb4a5341abd8c14e1f028f9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/DOTweenEditor.XML.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 036653b90921aec4b88622aeebdb6a9d 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/DOTweenEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/DOTweenEditor.dll -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b73376bde5d01384586cfa1833b06422 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/DOTweenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/DOTweenIcon.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/DOTweenMiniIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/DOTweenMiniIcon.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/Footer.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/Footer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/Footer_dark.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Plugins/DOTween/Editor/Imgs/Header.jpg -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 005a3466992146f498d671cf2e92a388 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModuleAudio.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f932c03c4e1cd4848ae1574cde4673f0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModuleEPOOutline.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8d6f666744edaf46a338d3d393ba5a2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModulePhysics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb4d602e195ef84458eca4a30a1403d4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModulePhysics2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 985747280b5c4694f8fadd48a10ef06a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModuleSprite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: face5be0235400c469a0c4d585f51e4b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModuleUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0620b71248366049b951dc1d0e78a01 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModuleUnityVersion.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 875271125f2c19f4eb16f989ab30e450 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/Modules/DOTweenModuleUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2c40fdeedbf720468c1b060a7549406 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Plugins/DOTween/readme.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee34b8c711f401f49841080ab0bf7578 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35a9408f7d6c0ed409a7b17e9860b8b0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/DOTweenSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72c35f0c17fd68c4e93154d14068c785 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2728e1e2f93760c4b8a846750713f340 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90c66ec4758616e4da89da5ef89ad5cf 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/CardView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14b0c28da54d3a44aa0f95aa897e32fe 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/ColorChangerView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52395122179e144098ca927f78020fe3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/CoolPopup.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f05bececcdc5b2e47962f4ce32796567 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/CoolPopup/Close.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 046177482bd0da541bb3e17231f76bba 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/CoolPopup/CoolPopup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b37838275be87ce4683842520d2d877b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/CoolPopup/CoolPopupAnimator.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b1b038c269b43848b7fa578d6c33cc1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/HandController.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d91153f609ff64fb224dce7d7ab64f 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/LoadingPopup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 495203c708a641e4ca5faeab583dc02a 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 112a48dad68f16044ace5badb43c5643 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ee12b3b59ff500646b833fc681459f07 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/Exit.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08e380543bff19642a36ee0f36d7320a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/Idle.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fde316f473b0c8c4d8e6601343ae26ac 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/IdleCapsule.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c99e31a0c9bd3459c890251bb58c2c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/IdleCube.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af8fb7cb876fd894182805cdf7d80b87 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/IdleCylinder.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ca71e5a1a93ea840b0fb8e3ae939a1f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/IdleSphere.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d0cca9c004de3345ab164bcf8417074 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/MoveToCapsule.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0ca6e5e5402ecc47b716aa464979146 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/MoveToCube.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f830fb6f9002fb44a3d87808696620a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/MoveToCylinder.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0749c519a9000d4c9b68b93c28c8a8f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/Animations/MoveToSphere.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 445755ae3f450e049a40dda5aaf2cad8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/MainMenu3dScene.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57a4895f69b06fd43a67ecbbeedf91b3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/MainMenuCameraAnimationController.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d38d0f170d605b4b8ff76a3906b7db4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenu3d/PlaneMaterial.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cae7b555e1b0c7a40a43390d6f5a83cd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenuUi.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b1abb4b92824a74fb1897fe8428ed64 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainMenuUi/MainMenuUi.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e507ad382d209a4c9e5dc98ee019775 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainScreen3dView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7680427094b5a4109939c3a293f86023 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/MainScreenView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d460eac0645fed042afe77a8552c373b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/StatsChanger.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98c17734e8ff35a4ea002563b34474fc 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/TextView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7400cac552b5f4d11af31efad0deaa24 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/TimeCounter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3495d00f264ca4e86903f2e99852f946 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/Prefabs/Views/TimeCounter/TimeCounter.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ddaecdc1671b4374b546b0a6900e05b 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afed5a5e1d854e84aa09f927753f7de0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Attack_skill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Attack_skill.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Board.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19261461fd5fc164880041f1f0e47987 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Board/BackgroundIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Board/BackgroundIn.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Board/BackgroundOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Board/BackgroundOut.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Board/Boarder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Board/Boarder.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Board/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Board/Button.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Board/Corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Board/Corner.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Board/CornerVert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Board/CornerVert.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Defense_skill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Defense_skill.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/Mana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/Mana.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/advmap_fill.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/advmap_fill.bmp -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/advmap_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/advmap_l.bmp -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Resources/UI/advmap_lu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/Resources/UI/advmap_lu.bmp -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 564e07174944c084988fcb4551ce5fa9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Scenes/MainScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dda4a6859fc835846b2486acd7dc4f71 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78985a50ca174d868c2799d3d9816b4e 3 | timeCreated: 1697367517 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7823a3f084024b3790b6a535a140edb7 3 | timeCreated: 1697367535 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/CCG.Tests.Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6124a4a2807845118e491de0f99462a 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 956e5f683514449f8a04a0f5041fc2c8 3 | timeCreated: 1698871654 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/BindableTestExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e9039d487714463ae607b3f291d807d 3 | timeCreated: 1699548389 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/SubstituteValueProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb259ecb1793407992e4bbb4b4a25c11 3 | timeCreated: 1698929438 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/SubstituteValueProviders/PromiseValueProviderFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 842f97c4b4fe4cdda32b1a80c632265d 3 | timeCreated: 1698929454 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/SubstituteValueProviders/UnityObjectsValueProviderFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85eba0224c4c4843ae098e5c80dfef85 3 | timeCreated: 1698961559 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/SynchronizationContext.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adc4d625e211435b84657bafacfda0b2 3 | timeCreated: 1699261103 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/SynchronizationContext/TestSynchronizationContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c74f971daee4eb79844fda6958c1870 3 | timeCreated: 1699261113 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/TestApplication.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 524c2ff1b5c54806b8b27181808f8b47 3 | timeCreated: 1698872409 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/TestApplicationExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9313832df114b4ebaf2500dfb33f567 3 | timeCreated: 1699496983 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/TestInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bbfc0bc79fe402281d16ebdd25816f1 3 | timeCreated: 1697979291 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Core/TestViewFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1fadc2fa21bf4694b294c96eb188712f 3 | timeCreated: 1698878343 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/PrebuildSetup.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a0fa09f60ff4414bf53f1153ecdb957 3 | timeCreated: 1698933716 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e8f9dd52cc44ddd964aeded74b23edf 3 | timeCreated: 1698878824 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/CardsTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 805c9bef8f7948f9a1f42b7f003df1e6 3 | timeCreated: 1699496945 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/ColorChangerTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8be28ed4713a42198d2980344ca93470 3 | timeCreated: 1738410099 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/CoolPopupTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f903959e7e284d75b8c01f5e821414ac 3 | timeCreated: 1698878893 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/GameTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e636c8b43563408aa2f51783be56efc5 3 | timeCreated: 1699375504 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/MainMenuTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db2545ca746d4100bfea0c29db5e5c6f 3 | timeCreated: 1699288312 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/MainScreenTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b55fe67161e14e16b42fc2bd4e22f763 3 | timeCreated: 1734268946 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/StartupTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d00d01cc2b8140139d0d43a9b0f6d0ea 3 | timeCreated: 1697369293 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/TestSubstitution.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d5e3faf392f43a0b0626aedab03bd4c 3 | timeCreated: 1698934052 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/Tests/EditorTests/Tests/TimeCounterTests.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512bc1fe392241048868ff35a4d1d9b4 3 | timeCreated: 1701524492 -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab70aee4d56447429c680537fbf93ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e59c59b81ab47f9b6ec5781fa725d2c 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f1baa9d144a9897cb1d341c2092b8 3 | folderAsset: yes 4 | timeCreated: 1442040525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e73a58f6e2794ae7b1b7e50b7fb811b0 3 | timeCreated: 1484172806 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e498d1c8094910479dc3e1b768306a4 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79459efec17a4d00a321bdcc27bbc385 3 | timeCreated: 1484172856 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f586378b4e144a9851e7b34d9b748ee 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fade42e8bc714b018fac513c043d323b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82c1b31c7e74239bff1220585707d2b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512a49d95c0c4332bdd98131869c23c9 3 | folderAsset: yes 4 | timeCreated: 1441876896 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41005c129ba4d66911b75229fd70b45 3 | timeCreated: 1480316912 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aecb92fff08436c8303b10eab8da368 3 | folderAsset: yes 4 | timeCreated: 1441876950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f952c082cb03451daed3ee968ac6c63e 3 | timeCreated: 1432805430 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f693669af91aa45ad615fc681ed29f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb5f55d8670e349b6e614913f9d910 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e3b057af24249748ff873be7fafee47 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e987d567d4e2c824d754223b3f3b0 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf5b9246416f84610a006f916af7 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14eb328de4b8eb245bb7cea29e4ac00b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1ede39bf3643ee8e493720e4259791 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02a7d8c237544f1962732b55a9aebf1 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d12adcee749c344b8117cf7c7eb912 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe393ace9b354375a9cb14cdbbc28be4 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85187c2149c549c5b33f0cdb02836b17 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ada0af4f174f0694ca6a487b8f543d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e6db2ebdc24f95958faec2be5558d6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf81c85f95fe47e1a27f6ae460cf182c 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407bc68d299748449bbf7f48ee690f8d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c334973cef89a9840b0b0c507e0377ab 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3997e2241185407d80309a82f9148466 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d930090c0cd643c7b55f19a38538c162 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/CCG/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.8f1 2 | m_EditorVersionWithRevision: 2022.3.8f1 (b5eafc012955) 3 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/CCG/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/.idea/.idea.QuickStartUnityMVVM/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/.idea/.idea.QuickStartUnityMVVM/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/.idea/.idea.QuickStartUnityMVVM/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 926766bbac9c546c6998a547a77a47b7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Libs/AsyncReactAwait.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/QuickStartUnityMVVM/Assets/Libs/AsyncReactAwait.dll -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Libs/AsyncReactAwait.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c545bec6764949a5837a3d245e0fe51 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Libs/UnityMVVM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/QuickStartUnityMVVM/Assets/Libs/UnityMVVM.dll -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b49b4cca509c644b88981f3f4355d381 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af4a638e5db9d8649a981064d9f7a50c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75406829aaca6154491302d85b26270a 3 | timeCreated: 1427860624 4 | licenseType: Free 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/ReadMe.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/svermeulen/Extenject 3 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/ReadMe.url.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 937aea47cf7f0864cb39571ca85e205d 3 | timeCreated: 1529238438 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9180a9720c42cb94f9b30a7c0c938d90 3 | folderAsset: yes 4 | timeCreated: 1452188407 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e92094ea8d3ee634f858163622b6abbb 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/BindInfo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a78a183f887b72e45b2ec6d77fb514d8 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e0d343c02f9d0a488a62abffae00ceb 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/ConcreteBinders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3b29de51c8625443984cbd926505d00 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Conventions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cecd58a5468ced54aabe6cc4d2eed9a8 3 | folderAsset: yes 4 | timeCreated: 1462127452 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 580f48a64cf849041937c7ad570aaf89 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryArgumentsToChoiceBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fd0e848e31df144fbbeab59a2c137e2 3 | folderAsset: yes 4 | timeCreated: 1528637818 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa754ab1fdfa8714fb6eddd17108e5c6 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17d1fc460074cfc419ffecab2a7e97e8 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/Untyped.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97d57d9da80f7414a8fed9f2a04621b8 3 | folderAsset: yes 4 | timeCreated: 1512304190 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1f8d57baff273344a3f10da1e51b772 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/FactoryToChoiceIdBinder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad3cf76cc0b1c154e868ae8b570a78b8 3 | folderAsset: yes 4 | timeCreated: 1484511595 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/Factory/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a019116e68c18f342995df14d6fbcf87 3 | folderAsset: yes 4 | timeCreated: 1484511595 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/FromBinders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b62c8a25fc0c5d34680c100f745a80e1 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Binders/GameObject.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a5ff7e3b16416245acfcd6be217a53f 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Finalizers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95ed99f2cba5359419d007822a4c0c31 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Binding/Finalizers/IBindingFinalizer.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IBindingFinalizer 4 | { 5 | BindingInheritanceMethods BindingInheritanceMethod 6 | { 7 | get; 8 | } 9 | 10 | void FinalizeBinding(DiContainer container); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70a96473817a0384580ace78f202a622 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Editor/EditorWindow.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd8d602c69b71714babee52a2d454aed 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Editor/Editors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbb1477b2e261944dad77cce5626aab0 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Editor/Editors/RunnableContextEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02bed9738f9c4323ac05524465473dee 3 | timeCreated: 1494728675 -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Editor/SceneParentLoading.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b93c2560e2014a4893f387eb7690dbd 3 | folderAsset: yes 4 | timeCreated: 1520777708 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenject-Editor", 3 | "references": [ 4 | "Zenject" 5 | ], 6 | "includePlatforms": [ 7 | "Editor" 8 | ], 9 | "excludePlatforms": [] 10 | } -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Editor/Zenject-Editor.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0acddb179989574c8355991596bd3e6 3 | timeCreated: 1531030222 4 | licenseType: Free 5 | AssemblyDefinitionImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Factories.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2750a8b0a1173074e9387536c12de4f7 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Factories/Pooling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f3fb191ad2b6c74c97f488543a89c82 3 | folderAsset: yes 4 | timeCreated: 1484511595 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Factories/Pooling/Static.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28d06bc0b4cdf374ca41d78b0ec5dc0a 3 | folderAsset: yes 4 | timeCreated: 1515014902 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Factories/Pooling/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6214acccd2e0c2044921cc068fb3d0a6 3 | folderAsset: yes 4 | timeCreated: 1520607639 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Injection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e36c66e30e287cf48b9bb264d4924562 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Install.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a15b3ef3a9656b4f85216520ae9b180 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Install/Contexts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc41c06067fc1d4479c3b85aa2707cfb 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Install/Contexts/RunnableContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13e9b26d23f6422cb282cc27631fc9e2 3 | timeCreated: 1494725784 -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Install/IInstaller.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | // We extract the interface so that monobehaviours can be installers 4 | public interface IInstaller 5 | { 6 | void InstallBindings(); 7 | 8 | bool IsEnabled 9 | { 10 | get; 11 | } 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Internal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd4fbc001f8bada428bbe3af6b6b21e8 3 | folderAsset: yes 4 | timeCreated: 1452188408 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Internal/PreserveAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ModestTree.Util 4 | { 5 | [AttributeUsage(AttributeTargets.All, AllowMultiple = false)] 6 | public class PreserveAttribute : Attribute 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Main.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f870edd43b85f4dae7b77cc0d75b46 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd5ba0ff0ad7f874f8938a3266c21d4f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/ComponentProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d80a7db637267834388a31f2b7ddcf36 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/ComponentProviders/AddToGameObjectComponentProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5a0ec9eb479742940a10701ec8a1d087 3 | folderAsset: yes 4 | timeCreated: 1461708047 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/Decorator.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 88c8658f07bf600408a596245682c306 3 | folderAsset: yes 4 | timeCreated: 1528368268 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/GameObjectProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c4a4be4639cdfc4c8d00456887fefb6 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/PrefabCreators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a029f9358245bf4e99fcb7fcc19ba28 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/PrefabProviders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4248afcd0d89aa54da8d2c34a41c5712 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/PrefabProviders/IPrefabProvider.cs: -------------------------------------------------------------------------------- 1 | #if !NOT_UNITY3D 2 | 3 | namespace Zenject 4 | { 5 | public interface IPrefabProvider 6 | { 7 | UnityEngine.Object GetPrefab(InjectContext context); 8 | } 9 | } 10 | 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Providers/SubContainerCreators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60492d3348bd7624a9f7f00d1e20ae8e 3 | folderAsset: yes 4 | timeCreated: 1461708046 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Runtime.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb9242e26ea385743abb8476b18d1e9f 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c5ae8c1093da554d8bf77c912cc5433 3 | folderAsset: yes 4 | timeCreated: 1487820668 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorIkHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IAnimatorIkHandler 4 | { 5 | void OnAnimatorIk(); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Runtime/AnimatorInterfaces/IAnimatorMoveHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IAnimatorMoveHandler 4 | { 5 | void OnAnimatorMove(); 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Runtime/Kernels.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 605550c45d7550e498dfe6968192459d 3 | folderAsset: yes 4 | timeCreated: 1462650136 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Runtime/Kernels/DecoratableMonoKernel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f054684b4d0f44a1904823270ae3f137 3 | timeCreated: 1587868417 -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Runtime/Kernels/DefaultGameObjectKernel.cs: -------------------------------------------------------------------------------- 1 | #if !NOT_UNITY3D 2 | 3 | namespace Zenject 4 | { 5 | public class DefaultGameObjectKernel : MonoKernel 6 | { 7 | } 8 | } 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Usage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5896143fdd47624ebc6ddd933f1ed1b 3 | folderAsset: yes 4 | timeCreated: 1427464099 5 | licenseType: Free 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Usage/Zenject-usage.dll -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Usage/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Usage/link.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78cde942f7000eb41900aa4d3c9249d7 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Util.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f550a9d7385fce4e9bc4a0e5fa52daf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Validation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 577ec212adf31e04bbd46b24f633f1e3 3 | folderAsset: yes 4 | timeCreated: 1459463884 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Source/Validation/IValidatable.cs: -------------------------------------------------------------------------------- 1 | namespace Zenject 2 | { 3 | public interface IValidatable 4 | { 5 | void Validate(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Version.txt: -------------------------------------------------------------------------------- 1 | 9.2.0 2 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/Version.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4917e73af158b1e4782b175c0568afcf 3 | timeCreated: 1452175972 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/package.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "name": "com.mathijsbakker.extenject", 4 | "displayName": "Extenject", 5 | "version": "9.2.0", 6 | "description": "Dependency Injection Framework for Unity3D", 7 | "unity": "2019.3" 8 | } 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/package.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5ee7f1788474bd44a48b0a201461151 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/zenject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Zenject" 3 | } 4 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Plugins/Zenject/zenject.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d8beb7f090555447a6cf5ce9e54dbb4 3 | timeCreated: 1531030458 4 | licenseType: Free 5 | AssemblyDefinitionImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 246549ea266374d6caa4b860eda8c44d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Prefabs/MyView.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eb0627e17ee84ca5903920f6bc832a1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4a0f59b51d3743cc8b3062164145492 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9fc0d4010bbf28b4594072e72b8655ab 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03c1931ab8a2640e29204bec1a211b7b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scripts/CoreInstaller.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b249d9ab534f840a9b2be48bc37b09ca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scripts/IMyViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c381040067314e519e75254a7b846526 3 | timeCreated: 1699878460 -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scripts/MyViewBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66e25daf0f0b442ebbba4eeb84d8cd90 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scripts/MyViewModel.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6a1b44fc50e41beb8359bdca3667d52 3 | timeCreated: 1699878699 -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scripts/StartupBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d0c11f7e075d402f8da6cc58dcb667b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/Scripts/UnityMVVM.QuickStart.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0d34f3593fc74711bc0afe43f6c845d 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab70aee4d56447429c680537fbf93ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e59c59b81ab47f9b6ec5781fa725d2c 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f1baa9d144a9897cb1d341c2092b8 3 | folderAsset: yes 4 | timeCreated: 1442040525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e73a58f6e2794ae7b1b7e50b7fb811b0 3 | timeCreated: 1484172806 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e498d1c8094910479dc3e1b768306a4 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 79459efec17a4d00a321bdcc27bbc385 3 | timeCreated: 1484172856 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f586378b4e144a9851e7b34d9b748ee 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fade42e8bc714b018fac513c043d323b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82c1b31c7e74239bff1220585707d2b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512a49d95c0c4332bdd98131869c23c9 3 | folderAsset: yes 4 | timeCreated: 1441876896 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41005c129ba4d66911b75229fd70b45 3 | timeCreated: 1480316912 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aecb92fff08436c8303b10eab8da368 3 | folderAsset: yes 4 | timeCreated: 1441876950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f952c082cb03451daed3ee968ac6c63e 3 | timeCreated: 1432805430 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f693669af91aa45ad615fc681ed29f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb5f55d8670e349b6e614913f9d910 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e3b057af24249748ff873be7fafee47 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e987d567d4e2c824d754223b3f3b0 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf5b9246416f84610a006f916af7 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14eb328de4b8eb245bb7cea29e4ac00b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1ede39bf3643ee8e493720e4259791 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02a7d8c237544f1962732b55a9aebf1 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d12adcee749c344b8117cf7c7eb912 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe393ace9b354375a9cb14cdbbc28be4 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85187c2149c549c5b33f0cdb02836b17 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ada0af4f174f0694ca6a487b8f543d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e6db2ebdc24f95958faec2be5558d6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf81c85f95fe47e1a27f6ae460cf182c 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407bc68d299748449bbf7f48ee690f8d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c334973cef89a9840b0b0c507e0377ab 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3997e2241185407d80309a82f9148466 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d930090c0cd643c7b55f19a38538c162 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/MvvmUnityProj/QuickStartUnityMVVM/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Dictionary": { 3 | "m_DictionaryValues": [] 4 | } 5 | } -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.10f1 2 | m_EditorVersionWithRevision: 2022.3.10f1 (ff3792e53c62) 3 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /MvvmUnityProj/QuickStartUnityMVVM/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.19.0 2 | -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # CS8618: Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable. 4 | dotnet_diagnostic.CS8618.severity = none 5 | -------------------------------------------------------------------------------- /src/.idea/.idea.UnityMVVM/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /modules.xml 6 | /contentModel.xml 7 | /projectSettingsUpdater.xml 8 | /.idea.UnityMVVM.iml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /src/.idea/.idea.UnityMVVM/.idea/.name: -------------------------------------------------------------------------------- 1 | UnityMVVM -------------------------------------------------------------------------------- /src/.idea/.idea.UnityMVVM/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/.idea/.idea.UnityMVVM/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/.idea/.idea.UnityMVVM/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/UnityMVVM/AssemblyParameters.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] 4 | [assembly: InternalsVisibleTo("Tests")] -------------------------------------------------------------------------------- /src/UnityMVVM/DI/IViewsContainerAdapter.cs: -------------------------------------------------------------------------------- 1 | using Zenject; 2 | 3 | namespace UnityMVVM.DI 4 | { 5 | internal interface IViewsContainerAdapter 6 | { 7 | 8 | DiContainer Container { get; } 9 | 10 | 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/UnityMVVM/DI/Mapper/IViewToViewModelMapper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace UnityMVVM.DI.Mapper 4 | { 5 | internal interface IViewToViewModelMapper 6 | { 7 | 8 | Type GetViewModelForView(Type viewType); 9 | 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/UnityMVVM/IViewBehaviour.cs: -------------------------------------------------------------------------------- 1 | namespace UnityMVVM 2 | { 3 | /// 4 | /// Base interface for views inherited from 5 | /// 6 | public interface IViewBehaviour 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/UnityEngine.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/UnityEngine.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UnityEngine 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject-ReflectionBaking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject-ReflectionBaking.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject-Signals.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject-Signals.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject-usage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject-usage.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject.ReflectionBaking.Mono.Cecil.dll -------------------------------------------------------------------------------- /src/UnityMVVM/Libs/Zenject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekchpek/UnityMVVM/1ac4d8d317659e8eda13d14ab289e675aef9b40e/src/UnityMVVM/Libs/Zenject.dll -------------------------------------------------------------------------------- /src/UnityMVVM/ViewModelCore/IPayload.cs: -------------------------------------------------------------------------------- 1 | namespace UnityMVVM.ViewModelCore 2 | { 3 | 4 | /// 5 | /// Interface to define and determine view model payload. 6 | /// 7 | public interface IPayload 8 | { 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /src/UnityMVVM/ViewModelCore/ViewModelDelegates.cs: -------------------------------------------------------------------------------- 1 | namespace UnityMVVM.ViewModelCore 2 | { 3 | 4 | /// 5 | /// The delegate for subviews creation. 6 | /// 7 | public delegate void SubviewCreatedDelegate(IViewModel parent, IViewModel createdSubview); 8 | } --------------------------------------------------------------------------------