├── .gitignore ├── .vscode └── settings.json ├── .vsconfig ├── Assets ├── Animations.meta ├── Animations │ ├── Entity.controller │ └── Entity.controller.meta ├── Fonts.meta ├── Fonts │ ├── Supercell-Magic_1.ttf │ └── Supercell-Magic_1.ttf.meta ├── GoogleService-Info.plist ├── GoogleService-Info.plist.meta ├── NiceVibrations.meta ├── NiceVibrations │ ├── Common.meta │ ├── Common │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── Android.meta │ │ │ ├── Android │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AndroidManifest.xml.meta │ │ │ ├── iOS.meta │ │ │ └── iOS │ │ │ │ ├── MMNViOSHapticsInterface.m │ │ │ │ ├── MMNViOSHapticsInterface.m.meta │ │ │ │ ├── Swift.meta │ │ │ │ └── Swift │ │ │ │ ├── MMNViOSCoreHapticsInterface.mm │ │ │ │ ├── MMNViOSCoreHapticsInterface.mm.meta │ │ │ │ ├── MMNViOSCoreHapticsInterface.swift │ │ │ │ ├── MMNViOSCoreHapticsInterface.swift.meta │ │ │ │ ├── UnitySwift-Bridging-Header.h │ │ │ │ ├── UnitySwift-Bridging-Header.h.meta │ │ │ │ ├── module.modulemap │ │ │ │ └── module.modulemap.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── MMNVPathDefinition.asset │ │ │ └── MMNVPathDefinition.asset.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── DefineSymbols.meta │ │ │ │ ├── DefineSymbols │ │ │ │ │ ├── NiceVibrationsDefineSymbols.cs │ │ │ │ │ └── NiceVibrationsDefineSymbols.cs.meta │ │ │ │ ├── MMNVAndroidWaveFormAssetEditor.cs │ │ │ │ ├── MMNVAndroidWaveFormAssetEditor.cs.meta │ │ │ │ ├── MMNVAssetPostProcessor.cs │ │ │ │ ├── MMNVAssetPostProcessor.cs.meta │ │ │ │ ├── MMNVBuildPostProcessor.cs │ │ │ │ ├── MMNVBuildPostProcessor.cs.meta │ │ │ │ ├── MMNVRumbleWaveFormAssetEditor.cs │ │ │ │ ├── MMNVRumbleWaveFormAssetEditor.cs.meta │ │ │ │ ├── MoreMountains.NiceVibrations.Editor.asmdef │ │ │ │ └── MoreMountains.NiceVibrations.Editor.asmdef.meta │ │ │ ├── Haptics.meta │ │ │ ├── Haptics │ │ │ │ ├── MMNVAHAP.cs │ │ │ │ ├── MMNVAHAP.cs.meta │ │ │ │ ├── MMNVAltThread.cs │ │ │ │ ├── MMNVAltThread.cs.meta │ │ │ │ ├── MMNVAndroid.cs │ │ │ │ ├── MMNVAndroid.cs.meta │ │ │ │ ├── MMNVAndroidWaveFormAsset.cs │ │ │ │ ├── MMNVAndroidWaveFormAsset.cs.meta │ │ │ │ ├── MMNVEnumCondition.cs │ │ │ │ ├── MMNVEnumCondition.cs.meta │ │ │ │ ├── MMNVHapticTypes.cs │ │ │ │ ├── MMNVHapticTypes.cs.meta │ │ │ │ ├── MMNVInspectorButton.cs │ │ │ │ ├── MMNVInspectorButton.cs.meta │ │ │ │ ├── MMNVPlatform.cs │ │ │ │ ├── MMNVPlatform.cs.meta │ │ │ │ ├── MMNVRumbleWaveFormAsset.cs │ │ │ │ ├── MMNVRumbleWaveFormAsset.cs.meta │ │ │ │ ├── MMNViOS.cs │ │ │ │ ├── MMNViOS.cs.meta │ │ │ │ ├── MMNViOSCoreHaptics.cs │ │ │ │ ├── MMNViOSCoreHaptics.cs.meta │ │ │ │ ├── MoreMountains.NiceVibrations.Haptics.asmdef │ │ │ │ └── MoreMountains.NiceVibrations.Haptics.asmdef.meta │ │ │ ├── NiceVibrations.meta │ │ │ ├── NiceVibrations │ │ │ │ ├── MMNVPath.cs │ │ │ │ ├── MMNVPath.cs.meta │ │ │ │ ├── MMVibrationManager.cs │ │ │ │ ├── MMVibrationManager.cs.meta │ │ │ │ ├── MMVibrationManagerTester.cs │ │ │ │ ├── MMVibrationManagerTester.cs.meta │ │ │ │ ├── MoreMountains.NiceVibrations.asmdef │ │ │ │ └── MoreMountains.NiceVibrations.asmdef.meta │ │ │ ├── Rumble.meta │ │ │ └── Rumble │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── DefineSymbols.meta │ │ │ │ ├── DefineSymbols │ │ │ │ │ ├── NiceVibrationsRumbleDefineSymbols.cs │ │ │ │ │ └── NiceVibrationsRumbleDefineSymbols.cs.meta │ │ │ │ ├── MoreMountains.NiceVibrations.Rumble.Editor.asmdef │ │ │ │ └── MoreMountains.NiceVibrations.Rumble.Editor.asmdef.meta │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ ├── MMNVRumble.cs │ │ │ │ ├── MMNVRumble.cs.meta │ │ │ │ ├── MoreMountains.NiceVibrations.Rumble.asmdef │ │ │ │ └── MoreMountains.NiceVibrations.Rumble.asmdef.meta │ │ ├── Sounds.meta │ │ └── Sounds │ │ │ ├── NiceVibrationsContinuous.wav │ │ │ ├── NiceVibrationsContinuous.wav.meta │ │ │ ├── NiceVibrationsTransient.wav │ │ │ └── NiceVibrationsTransient.wav.meta │ ├── Demos.meta │ ├── Demos │ │ ├── DemoAssets.meta │ │ ├── DemoAssets │ │ │ ├── AHAPPresetsDemo.meta │ │ │ ├── AHAPPresetsDemo │ │ │ │ ├── AHAP.meta │ │ │ │ ├── AHAP │ │ │ │ │ ├── AHAPPack1.meta │ │ │ │ │ ├── AHAPPack1 │ │ │ │ │ │ ├── NVBoing.json │ │ │ │ │ │ ├── NVBoing.json.meta │ │ │ │ │ │ ├── NVDrums.json │ │ │ │ │ │ ├── NVDrums.json.meta │ │ │ │ │ │ ├── NVGravel.json │ │ │ │ │ │ ├── NVGravel.json.meta │ │ │ │ │ │ ├── NVHeartbeats.json │ │ │ │ │ │ ├── NVHeartbeats.json.meta │ │ │ │ │ │ ├── NVInflate.json │ │ │ │ │ │ ├── NVInflate.json.meta │ │ │ │ │ │ ├── NVOscillate.json │ │ │ │ │ │ ├── NVOscillate.json.meta │ │ │ │ │ │ ├── NVRumble.json │ │ │ │ │ │ ├── NVRumble.json.meta │ │ │ │ │ │ ├── NVSparkle.json │ │ │ │ │ │ └── NVSparkle.json.meta │ │ │ │ │ ├── AHAPPack2.meta │ │ │ │ │ └── AHAPPack2 │ │ │ │ │ │ ├── NVCaptainAHAP.json │ │ │ │ │ │ ├── NVCaptainAHAP.json.meta │ │ │ │ │ │ ├── NVCarillon.json │ │ │ │ │ │ ├── NVCarillon.json.meta │ │ │ │ │ │ ├── NVDice.json │ │ │ │ │ │ ├── NVDice.json.meta │ │ │ │ │ │ ├── NVDrumsLoop.json │ │ │ │ │ │ ├── NVDrumsLoop.json.meta │ │ │ │ │ │ ├── NVGameOver.json │ │ │ │ │ │ ├── NVGameOver.json.meta │ │ │ │ │ │ ├── NVHeartbeats.json │ │ │ │ │ │ ├── NVHeartbeats.json.meta │ │ │ │ │ │ ├── NVLaser.json │ │ │ │ │ │ ├── NVLaser.json.meta │ │ │ │ │ │ ├── NVPowerOff.json │ │ │ │ │ │ ├── NVPowerOff.json.meta │ │ │ │ │ │ ├── NVReload.json │ │ │ │ │ │ ├── NVReload.json.meta │ │ │ │ │ │ ├── NVTeleport.json │ │ │ │ │ │ └── NVTeleport.json.meta │ │ │ │ ├── AndroidWaveforms.meta │ │ │ │ ├── AndroidWaveforms │ │ │ │ │ ├── NVCarillon.asset │ │ │ │ │ ├── NVCarillon.asset.meta │ │ │ │ │ ├── NVDice.asset │ │ │ │ │ ├── NVDice.asset.meta │ │ │ │ │ ├── NVDrumsLoop.asset │ │ │ │ │ ├── NVDrumsLoop.asset.meta │ │ │ │ │ ├── NVGameOver.asset │ │ │ │ │ ├── NVGameOver.asset.meta │ │ │ │ │ ├── NVHeartbeats.asset │ │ │ │ │ ├── NVHeartbeats.asset.meta │ │ │ │ │ ├── NVLaser.asset │ │ │ │ │ ├── NVLaser.asset.meta │ │ │ │ │ ├── NVPowerOff.asset │ │ │ │ │ ├── NVPowerOff.asset.meta │ │ │ │ │ ├── NVReload.asset │ │ │ │ │ ├── NVReload.asset.meta │ │ │ │ │ ├── NVTeleport.asset │ │ │ │ │ └── NVTeleport.asset.meta │ │ │ │ ├── Animations.meta │ │ │ │ ├── Animations │ │ │ │ │ ├── AHAPPresetIconAnimator.controller │ │ │ │ │ ├── AHAPPresetIconAnimator.controller.meta │ │ │ │ │ ├── IdleAnimation.anim │ │ │ │ │ ├── IdleAnimation.anim.meta │ │ │ │ │ ├── ShakingAnimation.anim │ │ │ │ │ ├── ShakingAnimation.anim.meta │ │ │ │ │ ├── SwapAnimation.anim │ │ │ │ │ └── SwapAnimation.anim.meta │ │ │ │ ├── RumbleWaveforms.meta │ │ │ │ ├── RumbleWaveforms │ │ │ │ │ ├── NVRCarillon.asset │ │ │ │ │ ├── NVRCarillon.asset.meta │ │ │ │ │ ├── NVRDice.asset │ │ │ │ │ ├── NVRDice.asset.meta │ │ │ │ │ ├── NVRDrumsLoop.asset │ │ │ │ │ ├── NVRDrumsLoop.asset.meta │ │ │ │ │ ├── NVRGameOver.asset │ │ │ │ │ ├── NVRGameOver.asset.meta │ │ │ │ │ ├── NVRHeartbeats.asset │ │ │ │ │ ├── NVRHeartbeats.asset.meta │ │ │ │ │ ├── NVRLaser.asset │ │ │ │ │ ├── NVRLaser.asset.meta │ │ │ │ │ ├── NVRPowerOff.asset │ │ │ │ │ ├── NVRPowerOff.asset.meta │ │ │ │ │ ├── NVRReload.asset │ │ │ │ │ ├── NVRReload.asset.meta │ │ │ │ │ ├── NVRTeleport.asset │ │ │ │ │ └── NVRTeleport.asset.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── PresetDemoManager.cs │ │ │ │ │ ├── PresetDemoManager.cs.meta │ │ │ │ │ ├── PresetDemoRotator.cs │ │ │ │ │ └── PresetDemoRotator.cs.meta │ │ │ │ ├── Sounds.meta │ │ │ │ ├── Sounds │ │ │ │ │ ├── NVCarillon.wav │ │ │ │ │ ├── NVCarillon.wav.meta │ │ │ │ │ ├── NVDice.wav │ │ │ │ │ ├── NVDice.wav.meta │ │ │ │ │ ├── NVDrumsLoop.wav │ │ │ │ │ ├── NVDrumsLoop.wav.meta │ │ │ │ │ ├── NVGameOver.wav │ │ │ │ │ ├── NVGameOver.wav.meta │ │ │ │ │ ├── NVHeartbeats.wav │ │ │ │ │ ├── NVHeartbeats.wav.meta │ │ │ │ │ ├── NVLaser.wav │ │ │ │ │ ├── NVLaser.wav.meta │ │ │ │ │ ├── NVPowerOff.wav │ │ │ │ │ ├── NVPowerOff.wav.meta │ │ │ │ │ ├── NVReload.wav │ │ │ │ │ ├── NVReload.wav.meta │ │ │ │ │ ├── NVTeleport.wav │ │ │ │ │ └── NVTeleport.wav.meta │ │ │ │ ├── Sprites.meta │ │ │ │ └── Sprites │ │ │ │ │ ├── NVPresetsIcons.png │ │ │ │ │ └── NVPresetsIcons.png.meta │ │ │ ├── BallDemo.meta │ │ │ ├── BallDemo │ │ │ │ ├── HitAnimation.anim │ │ │ │ ├── HitAnimation.anim.meta │ │ │ │ ├── IdleAnimation.anim │ │ │ │ ├── IdleAnimation.anim.meta │ │ │ │ ├── NVBallAnimatorController.controller │ │ │ │ ├── NVBallAnimatorController.controller.meta │ │ │ │ ├── Physics2DMaterials.meta │ │ │ │ ├── Physics2DMaterials │ │ │ │ │ ├── NVBouncy.physicsMaterial2D │ │ │ │ │ └── NVBouncy.physicsMaterial2D.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── BallDemoBall.cs │ │ │ │ │ ├── BallDemoBall.cs.meta │ │ │ │ │ ├── BallDemoManager.cs │ │ │ │ │ ├── BallDemoManager.cs.meta │ │ │ │ │ ├── BallDemoWall.cs │ │ │ │ │ ├── BallDemoWall.cs.meta │ │ │ │ │ ├── BallPusher.cs │ │ │ │ │ ├── BallPusher.cs.meta │ │ │ │ │ ├── BallTouchZone.cs │ │ │ │ │ └── BallTouchZone.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ └── Sprites │ │ │ │ │ ├── NVBall.png │ │ │ │ │ ├── NVBall.png.meta │ │ │ │ │ ├── NVBallParticle.mat │ │ │ │ │ ├── NVBallParticle.mat.meta │ │ │ │ │ ├── NVBallParticle.png │ │ │ │ │ └── NVBallParticle.png.meta │ │ │ ├── CarDemo.meta │ │ │ ├── CarDemo │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── CarDemoManager.cs │ │ │ │ │ ├── CarDemoManager.cs.meta │ │ │ │ │ ├── PowerBarElement.cs │ │ │ │ │ └── PowerBarElement.cs.meta │ │ │ │ ├── Sounds.meta │ │ │ │ ├── Sounds │ │ │ │ │ ├── NVCarEngine.wav │ │ │ │ │ └── NVCarEngine.wav.meta │ │ │ │ ├── Sprites.meta │ │ │ │ └── Sprites │ │ │ │ │ ├── NVCar.png │ │ │ │ │ ├── NVCar.png.meta │ │ │ │ │ ├── NVCarWheel.png │ │ │ │ │ └── NVCarWheel.png.meta │ │ │ ├── ContinuousDemo.meta │ │ │ ├── ContinuousDemo │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── ContinuousHapticsDemoManager.cs │ │ │ │ │ └── ContinuousHapticsDemoManager.cs.meta │ │ │ ├── RegularPresetsDemo.meta │ │ │ ├── RegularPresetsDemo │ │ │ │ ├── RegularPresetsDemoManager.cs │ │ │ │ ├── RegularPresetsDemoManager.cs.meta │ │ │ │ ├── Sprites.meta │ │ │ │ └── Sprites │ │ │ │ │ ├── RegularPresetsIcons.png │ │ │ │ │ └── RegularPresetsIcons.png.meta │ │ │ ├── TransientDemo.meta │ │ │ ├── TransientDemo │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── TransientHapticsDemoManager.cs │ │ │ │ │ └── TransientHapticsDemoManager.cs.meta │ │ │ ├── WobbleDemo.meta │ │ │ └── WobbleDemo │ │ │ │ ├── AHAP.meta │ │ │ │ ├── AHAP │ │ │ │ ├── NVSpring.json │ │ │ │ └── NVSpring.json.meta │ │ │ │ ├── Animations.meta │ │ │ │ ├── Animations │ │ │ │ ├── WobbleButtonAnimator.controller │ │ │ │ ├── WobbleButtonAnimator.controller.meta │ │ │ │ ├── WobbleIdle.anim │ │ │ │ ├── WobbleIdle.anim.meta │ │ │ │ ├── WobbleSpark.anim │ │ │ │ └── WobbleSpark.anim.meta │ │ │ │ ├── Prefabs.meta │ │ │ │ ├── Prefabs │ │ │ │ ├── WobbleButton.prefab │ │ │ │ └── WobbleButton.prefab.meta │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ ├── WobbleButton.cs │ │ │ │ ├── WobbleButton.cs.meta │ │ │ │ ├── WobbleDemoManager.cs │ │ │ │ └── WobbleDemoManager.cs.meta │ │ │ │ ├── Sounds.meta │ │ │ │ └── Sounds │ │ │ │ ├── NVWobbleSpring.wav │ │ │ │ └── NVWobbleSpring.wav.meta │ │ ├── MoreMountains.NiceVibrations.Demos.asmdef │ │ ├── MoreMountains.NiceVibrations.Demos.asmdef.meta │ │ ├── NiceVibrationsDemo.unity │ │ ├── NiceVibrationsDemo.unity.meta │ │ ├── _Common.meta │ │ ├── _Common │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── BIG JOHN.otf │ │ │ │ ├── BIG JOHN.otf.meta │ │ │ │ ├── RobotoMono-Bold.ttf │ │ │ │ ├── RobotoMono-Bold.ttf.meta │ │ │ │ ├── RobotoMono-Light.ttf │ │ │ │ ├── RobotoMono-Light.ttf.meta │ │ │ │ ├── RobotoMono-Medium.ttf │ │ │ │ ├── RobotoMono-Medium.ttf.meta │ │ │ │ ├── RobotoMono-Regular.ttf │ │ │ │ └── RobotoMono-Regular.ttf.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── HorizontalSliderComponent.prefab │ │ │ │ ├── HorizontalSliderComponent.prefab.meta │ │ │ │ ├── PaginationDot.prefab │ │ │ │ ├── PaginationDot.prefab.meta │ │ │ │ ├── VerticalProgressBar.prefab │ │ │ │ ├── VerticalProgressBar.prefab.meta │ │ │ │ ├── VerticalSliderComponent.prefab │ │ │ │ └── VerticalSliderComponent.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── DemoManager.cs │ │ │ │ ├── DemoManager.cs.meta │ │ │ │ ├── NiceVibrationsDemoHelpers.cs │ │ │ │ ├── NiceVibrationsDemoHelpers.cs.meta │ │ │ │ ├── SoundSwitch.cs │ │ │ │ ├── SoundSwitch.cs.meta │ │ │ │ ├── UI.meta │ │ │ │ ├── UI │ │ │ │ │ ├── HapticCurve.cs │ │ │ │ │ ├── HapticCurve.cs.meta │ │ │ │ │ ├── MMFPSCounter.cs │ │ │ │ │ ├── MMFPSCounter.cs.meta │ │ │ │ │ ├── MMFPSUnlock.cs │ │ │ │ │ ├── MMFPSUnlock.cs.meta │ │ │ │ │ ├── MMKnob.cs │ │ │ │ │ ├── MMKnob.cs.meta │ │ │ │ │ ├── MMProgressBar.cs │ │ │ │ │ ├── MMProgressBar.cs.meta │ │ │ │ │ ├── MMSignal.cs │ │ │ │ │ ├── MMSignal.cs.meta │ │ │ │ │ ├── MMSpriteReplace.cs │ │ │ │ │ ├── MMSpriteReplace.cs.meta │ │ │ │ │ ├── MMSwitch.cs │ │ │ │ │ ├── MMSwitch.cs.meta │ │ │ │ │ ├── MMTouchButton.cs │ │ │ │ │ ├── MMTouchButton.cs.meta │ │ │ │ │ ├── MMUIShaker.cs │ │ │ │ │ ├── MMUIShaker.cs.meta │ │ │ │ │ ├── Pagination.cs │ │ │ │ │ └── Pagination.cs.meta │ │ │ │ ├── V2DemoManager.cs │ │ │ │ ├── V2DemoManager.cs.meta │ │ │ │ ├── VersionNumber.cs │ │ │ │ └── VersionNumber.cs.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── CurveMaterial.mat │ │ │ │ ├── CurveMaterial.mat.meta │ │ │ │ ├── MaskedUI.mat │ │ │ │ ├── MaskedUI.mat.meta │ │ │ │ ├── MaskedUI.shader │ │ │ │ └── MaskedUI.shader.meta │ │ │ ├── Sprites.meta │ │ │ └── Sprites │ │ │ │ ├── NV1x1White.png │ │ │ │ ├── NV1x1White.png.meta │ │ │ │ ├── NV3Cols.png │ │ │ │ ├── NV3Cols.png.meta │ │ │ │ ├── NV3Dots.png │ │ │ │ ├── NV3Dots.png.meta │ │ │ │ ├── NV7Dots.png │ │ │ │ ├── NV7Dots.png.meta │ │ │ │ ├── NVArrow.png │ │ │ │ ├── NVArrow.png.meta │ │ │ │ ├── NVDottedPattern.png │ │ │ │ ├── NVDottedPattern.png.meta │ │ │ │ ├── NVKnob.png │ │ │ │ ├── NVKnob.png.meta │ │ │ │ ├── NVLogoNice.png │ │ │ │ ├── NVLogoNice.png.meta │ │ │ │ ├── NVLogoVibrations.png │ │ │ │ ├── NVLogoVibrations.png.meta │ │ │ │ ├── NVPaginationDot.png │ │ │ │ ├── NVPaginationDot.png.meta │ │ │ │ ├── NVRoundedCorners.png │ │ │ │ ├── NVRoundedCorners.png.meta │ │ │ │ ├── NVRoundedCornersBig.png │ │ │ │ ├── NVRoundedCornersBig.png.meta │ │ │ │ ├── NVSwitchBackground.png │ │ │ │ ├── NVSwitchBackground.png.meta │ │ │ │ ├── NVSwitchIndicator.png │ │ │ │ ├── NVSwitchIndicator.png.meta │ │ │ │ ├── NVSwitchKnob.png │ │ │ │ ├── NVSwitchKnob.png.meta │ │ │ │ ├── NVVerticalProgressBar.png │ │ │ │ └── NVVerticalProgressBar.png.meta │ │ ├── _OLD.meta │ │ └── _OLD │ │ │ ├── v1Demo.meta │ │ │ └── v1Demo │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ ├── NiceVibrationsDemoManager.cs │ │ │ └── NiceVibrationsDemoManager.cs.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ ├── DemoBackground.png │ │ │ ├── DemoBackground.png.meta │ │ │ ├── MoreMountainsLogo.png │ │ │ ├── MoreMountainsLogo.png.meta │ │ │ ├── NiceVibrationsIcon.png │ │ │ ├── NiceVibrationsIcon.png.meta │ │ │ ├── NiceVibrationsLogo.png │ │ │ ├── NiceVibrationsLogo.png.meta │ │ │ ├── RoundedCorners10Stroke5.png │ │ │ ├── RoundedCorners10Stroke5.png.meta │ │ │ ├── icon-nice-vibrations.png │ │ │ └── icon-nice-vibrations.png.meta │ │ │ ├── v1Demo.unity │ │ │ └── v1Demo.unity.meta │ ├── OlderVersions.meta │ ├── OlderVersions │ │ ├── v1.7.meta │ │ ├── v1.7 │ │ │ ├── NiceVibrations-v-1-7-readme.txt │ │ │ ├── NiceVibrations-v-1-7-readme.txt.meta │ │ │ └── NiceVibrations-v-1-7.unitypackage.meta │ │ ├── v2.0.1.meta │ │ └── v2.0.1 │ │ │ ├── NiceVibrations-v-2-0-1-readme.txt │ │ │ ├── NiceVibrations-v-2-0-1-readme.txt.meta │ │ │ └── NiceVibrations-v-2-0-1.unitypackage.meta │ ├── ThirdParty.meta │ ├── ThirdParty │ │ ├── Newtonsoft.meta │ │ └── Newtonsoft │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.dll.meta │ │ │ ├── NewtonsoftJsonLicense.txt │ │ │ └── NewtonsoftJsonLicense.txt.meta │ ├── license.txt │ ├── license.txt.meta │ ├── readme.txt │ └── readme.txt.meta ├── Plugins.meta ├── Plugins │ ├── Android.meta │ └── Android │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifest.xml.meta │ │ ├── FirebaseApp.androidlib.meta │ │ ├── FirebaseApp.androidlib │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifest.xml.meta │ │ ├── project.properties │ │ ├── project.properties.meta │ │ ├── res.meta │ │ └── res │ │ │ ├── values.meta │ │ │ └── values │ │ │ ├── google-services.xml │ │ │ └── google-services.xml.meta │ │ ├── androidx.annotation.annotation-1.1.0.jar │ │ ├── androidx.annotation.annotation-1.1.0.jar.meta │ │ ├── androidx.arch.core.core-common-2.0.0.jar │ │ ├── androidx.arch.core.core-common-2.0.0.jar.meta │ │ ├── androidx.arch.core.core-runtime-2.0.0.aar │ │ ├── androidx.arch.core.core-runtime-2.0.0.aar.meta │ │ ├── androidx.asynclayoutinflater.asynclayoutinflater-1.0.0.aar │ │ ├── androidx.asynclayoutinflater.asynclayoutinflater-1.0.0.aar.meta │ │ ├── androidx.collection.collection-1.0.0.jar │ │ ├── androidx.collection.collection-1.0.0.jar.meta │ │ ├── androidx.coordinatorlayout.coordinatorlayout-1.0.0.aar │ │ ├── androidx.coordinatorlayout.coordinatorlayout-1.0.0.aar.meta │ │ ├── androidx.core.core-1.2.0.aar │ │ ├── androidx.core.core-1.2.0.aar.meta │ │ ├── androidx.cursoradapter.cursoradapter-1.0.0.aar │ │ ├── androidx.cursoradapter.cursoradapter-1.0.0.aar.meta │ │ ├── androidx.customview.customview-1.0.0.aar │ │ ├── androidx.customview.customview-1.0.0.aar.meta │ │ ├── androidx.documentfile.documentfile-1.0.0.aar │ │ ├── androidx.documentfile.documentfile-1.0.0.aar.meta │ │ ├── androidx.drawerlayout.drawerlayout-1.0.0.aar │ │ ├── androidx.drawerlayout.drawerlayout-1.0.0.aar.meta │ │ ├── androidx.fragment.fragment-1.0.0.aar │ │ ├── androidx.fragment.fragment-1.0.0.aar.meta │ │ ├── androidx.interpolator.interpolator-1.0.0.aar │ │ ├── androidx.interpolator.interpolator-1.0.0.aar.meta │ │ ├── androidx.legacy.legacy-support-core-ui-1.0.0.aar │ │ ├── androidx.legacy.legacy-support-core-ui-1.0.0.aar.meta │ │ ├── androidx.legacy.legacy-support-core-utils-1.0.0.aar │ │ ├── androidx.legacy.legacy-support-core-utils-1.0.0.aar.meta │ │ ├── androidx.lifecycle.lifecycle-common-2.0.0.jar │ │ ├── androidx.lifecycle.lifecycle-common-2.0.0.jar.meta │ │ ├── androidx.lifecycle.lifecycle-livedata-2.0.0.aar │ │ ├── androidx.lifecycle.lifecycle-livedata-2.0.0.aar.meta │ │ ├── androidx.lifecycle.lifecycle-livedata-core-2.0.0.aar │ │ ├── androidx.lifecycle.lifecycle-livedata-core-2.0.0.aar.meta │ │ ├── androidx.lifecycle.lifecycle-runtime-2.0.0.aar │ │ ├── androidx.lifecycle.lifecycle-runtime-2.0.0.aar.meta │ │ ├── androidx.lifecycle.lifecycle-viewmodel-2.0.0.aar │ │ ├── androidx.lifecycle.lifecycle-viewmodel-2.0.0.aar.meta │ │ ├── androidx.loader.loader-1.0.0.aar │ │ ├── androidx.loader.loader-1.0.0.aar.meta │ │ ├── androidx.localbroadcastmanager.localbroadcastmanager-1.0.0.aar │ │ ├── androidx.localbroadcastmanager.localbroadcastmanager-1.0.0.aar.meta │ │ ├── androidx.print.print-1.0.0.aar │ │ ├── androidx.print.print-1.0.0.aar.meta │ │ ├── androidx.slidingpanelayout.slidingpanelayout-1.0.0.aar │ │ ├── androidx.slidingpanelayout.slidingpanelayout-1.0.0.aar.meta │ │ ├── androidx.swiperefreshlayout.swiperefreshlayout-1.0.0.aar │ │ ├── androidx.swiperefreshlayout.swiperefreshlayout-1.0.0.aar.meta │ │ ├── androidx.versionedparcelable.versionedparcelable-1.1.0.aar │ │ ├── androidx.versionedparcelable.versionedparcelable-1.1.0.aar.meta │ │ ├── androidx.viewpager.viewpager-1.0.0.aar │ │ ├── androidx.viewpager.viewpager-1.0.0.aar.meta │ │ ├── com.google.android.datatransport.transport-api-3.0.0.aar │ │ ├── com.google.android.datatransport.transport-api-3.0.0.aar.meta │ │ ├── com.google.android.datatransport.transport-backend-cct-3.0.0.aar │ │ ├── com.google.android.datatransport.transport-backend-cct-3.0.0.aar.meta │ │ ├── com.google.android.datatransport.transport-runtime-3.0.0.aar │ │ ├── com.google.android.datatransport.transport-runtime-3.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-ads-identifier-17.0.0.aar │ │ ├── com.google.android.gms.play-services-ads-identifier-17.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-base-17.6.0.aar │ │ ├── com.google.android.gms.play-services-base-17.6.0.aar.meta │ │ ├── com.google.android.gms.play-services-basement-17.6.0.aar │ │ ├── com.google.android.gms.play-services-basement-17.6.0.aar.meta │ │ ├── com.google.android.gms.play-services-cloud-messaging-16.0.0.aar │ │ ├── com.google.android.gms.play-services-cloud-messaging-16.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-measurement-19.0.0.aar │ │ ├── com.google.android.gms.play-services-measurement-19.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-measurement-api-19.0.0.aar │ │ ├── com.google.android.gms.play-services-measurement-api-19.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-measurement-base-19.0.0.aar │ │ ├── com.google.android.gms.play-services-measurement-base-19.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-measurement-impl-19.0.0.aar │ │ ├── com.google.android.gms.play-services-measurement-impl-19.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-measurement-sdk-19.0.0.aar │ │ ├── com.google.android.gms.play-services-measurement-sdk-19.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-measurement-sdk-api-19.0.0.aar │ │ ├── com.google.android.gms.play-services-measurement-sdk-api-19.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-stats-17.0.0.aar │ │ ├── com.google.android.gms.play-services-stats-17.0.0.aar.meta │ │ ├── com.google.android.gms.play-services-tasks-17.2.1.aar │ │ ├── com.google.android.gms.play-services-tasks-17.2.1.aar.meta │ │ ├── com.google.firebase.firebase-analytics-19.0.0.aar │ │ ├── com.google.firebase.firebase-analytics-19.0.0.aar.meta │ │ ├── com.google.firebase.firebase-analytics-unity-8.3.0.aar │ │ ├── com.google.firebase.firebase-analytics-unity-8.3.0.aar.meta │ │ ├── com.google.firebase.firebase-annotations-16.0.0.jar │ │ ├── com.google.firebase.firebase-annotations-16.0.0.jar.meta │ │ ├── com.google.firebase.firebase-app-unity-8.3.0.aar │ │ ├── com.google.firebase.firebase-app-unity-8.3.0.aar.meta │ │ ├── com.google.firebase.firebase-common-20.0.0.aar │ │ ├── com.google.firebase.firebase-common-20.0.0.aar.meta │ │ ├── com.google.firebase.firebase-components-17.0.0.aar │ │ ├── com.google.firebase.firebase-components-17.0.0.aar.meta │ │ ├── com.google.firebase.firebase-datatransport-18.0.0.aar │ │ ├── com.google.firebase.firebase-datatransport-18.0.0.aar.meta │ │ ├── com.google.firebase.firebase-encoders-17.0.0.jar │ │ ├── com.google.firebase.firebase-encoders-17.0.0.jar.meta │ │ ├── com.google.firebase.firebase-encoders-json-18.0.0.aar │ │ ├── com.google.firebase.firebase-encoders-json-18.0.0.aar.meta │ │ ├── com.google.firebase.firebase-iid-21.1.0.aar │ │ ├── com.google.firebase.firebase-iid-21.1.0.aar.meta │ │ ├── com.google.firebase.firebase-iid-interop-17.1.0.aar │ │ ├── com.google.firebase.firebase-iid-interop-17.1.0.aar.meta │ │ ├── com.google.firebase.firebase-installations-17.0.0.aar │ │ ├── com.google.firebase.firebase-installations-17.0.0.aar.meta │ │ ├── com.google.firebase.firebase-installations-interop-17.0.0.aar │ │ ├── com.google.firebase.firebase-installations-interop-17.0.0.aar.meta │ │ ├── com.google.firebase.firebase-measurement-connector-19.0.0.aar │ │ ├── com.google.firebase.firebase-measurement-connector-19.0.0.aar.meta │ │ ├── com.google.firebase.firebase-messaging-22.0.0.aar │ │ ├── com.google.firebase.firebase-messaging-22.0.0.aar.meta │ │ ├── com.google.firebase.firebase-messaging-unity-8.3.0.aar │ │ ├── com.google.firebase.firebase-messaging-unity-8.3.0.aar.meta │ │ ├── javax.inject.javax.inject-1.jar │ │ └── javax.inject.javax.inject-1.jar.meta ├── Prefabs.meta ├── Prefabs │ ├── Arrow.prefab │ ├── Arrow.prefab.meta │ ├── DamageText.prefab │ ├── DamageText.prefab.meta │ ├── Entity 1.prefab │ ├── Entity 1.prefab.meta │ ├── Entity 2.prefab │ ├── Entity 2.prefab.meta │ ├── Entity 3.prefab │ ├── Entity 3.prefab.meta │ ├── Entity.prefab │ ├── Entity.prefab.meta │ ├── Hit.anim │ ├── Hit.anim.meta │ ├── Image (Upgrade tab).prefab │ ├── Image (Upgrade tab).prefab.meta │ ├── Rock.prefab │ ├── Rock.prefab.meta │ ├── Shield.prefab │ └── Shield.prefab.meta ├── Scenes.meta ├── Scenes │ ├── GameScene.unity │ ├── GameScene.unity.meta │ ├── MechaincTestScene.unity │ └── MechaincTestScene.unity.meta ├── Scripts.meta ├── Scripts │ ├── Arrow.cs │ ├── Arrow.cs.meta │ ├── ArrowShooter.cs │ ├── ArrowShooter.cs.meta │ ├── AxeUpgrade.cs │ ├── AxeUpgrade.cs.meta │ ├── BattleDamage.cs │ ├── BattleDamage.cs.meta │ ├── BowUpgrade.cs │ ├── BowUpgrade.cs.meta │ ├── CatapultUpgrade.cs │ ├── CatapultUpgrade.cs.meta │ ├── ClickableArea.cs │ ├── ClickableArea.cs.meta │ ├── CrossbowUpgrade.cs │ ├── CrossbowUpgrade.cs.meta │ ├── DataLoader.cs │ ├── DataLoader.cs.meta │ ├── Entity.cs │ ├── Entity.cs.meta │ ├── EntitySpawner.cs │ ├── EntitySpawner.cs.meta │ ├── Json.meta │ ├── Json │ │ ├── SimpleJSON.cs │ │ ├── SimpleJSON.cs.meta │ │ ├── SimpleJSONBinary.cs │ │ ├── SimpleJSONBinary.cs.meta │ │ ├── SimpleJSONDotNetTypes.cs │ │ ├── SimpleJSONDotNetTypes.cs.meta │ │ ├── SimpleJSONUnity.cs │ │ └── SimpleJSONUnity.cs.meta │ ├── MaceUpgrade.cs │ ├── MaceUpgrade.cs.meta │ ├── Player.cs │ ├── Player.cs.meta │ ├── PlayerInfo.cs │ ├── PlayerInfo.cs.meta │ ├── PlayerStats.cs │ ├── PlayerStats.cs.meta │ ├── PoleaxeUpgrade.cs │ ├── PoleaxeUpgrade.cs.meta │ ├── Rock.cs │ ├── Rock.cs.meta │ ├── RockUpgrade.cs │ ├── RockUpgrade.cs.meta │ ├── ShieldSpawner.cs │ ├── ShieldSpawner.cs.meta │ ├── SwordUpgrade.cs │ ├── SwordUpgrade.cs.meta │ ├── UIManager.cs │ ├── UIManager.cs.meta │ ├── Upgrade.cs │ ├── Upgrade.cs.meta │ ├── UpgradeTab.cs │ └── UpgradeTab.cs.meta ├── Sounds.meta ├── Sounds │ ├── music.mp3 │ └── music.mp3.meta ├── Sprites.meta ├── Sprites │ ├── 1x1 pixel.png │ ├── 1x1 pixel.png.meta │ ├── arrow.png │ ├── arrow.png.meta │ ├── arrows.png │ ├── arrows.png.meta │ ├── ax_icon.png │ ├── ax_icon.png.meta │ ├── axe_icon.png │ ├── axe_icon.png.meta │ ├── balance.png │ ├── balance.png.meta │ ├── bg.png │ ├── bg.png.meta │ ├── bg_dark.png │ ├── bg_dark.png.meta │ ├── buy.png │ ├── buy.png.meta │ ├── catapult_icon.png │ ├── catapult_icon.png.meta │ ├── coin_icon.png │ ├── coin_icon.png.meta │ ├── crossbow_icon.png │ ├── crossbow_icon.png.meta │ ├── dark_buy.png │ ├── dark_buy.png.meta │ ├── darkcoin_icon.png │ ├── darkcoin_icon.png.meta │ ├── gun_window.png │ ├── gun_window.png.meta │ ├── hpbar_bg.png │ ├── hpbar_bg.png.meta │ ├── hpbar_filled.png │ ├── hpbar_filled.png.meta │ ├── icon_app.png │ ├── icon_app.png.meta │ ├── light_buy.png │ ├── light_buy.png.meta │ ├── mace.png │ ├── mace.png.meta │ ├── monster1 1.png │ ├── monster1 1.png.meta │ ├── monster2 1.png │ ├── monster2 1.png.meta │ ├── monster3 1.png │ ├── monster3 1.png.meta │ ├── monster4 1.png │ ├── monster4 1.png.meta │ ├── platform 1.png │ ├── platform 1.png.meta │ ├── shield_icon.png │ ├── shield_icon.png.meta │ ├── slot_gun.png │ ├── slot_gun.png.meta │ ├── stone.png │ ├── stone.png.meta │ ├── sword.png │ ├── sword.png.meta │ ├── wooden_frame.png │ └── wooden_frame.png.meta ├── StreamingAssets.meta ├── StreamingAssets │ ├── google-services-desktop.json │ └── google-services-desktop.json.meta ├── com.google.external-dependency-manager-1.2.166.tgz ├── com.google.external-dependency-manager-1.2.166.tgz.meta ├── com.google.firebase.analytics-8.3.0.tgz ├── com.google.firebase.analytics-8.3.0.tgz.meta ├── com.google.firebase.app-8.3.0.tgz ├── com.google.firebase.app-8.3.0.tgz.meta ├── com.google.firebase.crashlytics-8.3.0.tgz ├── com.google.firebase.crashlytics-8.3.0.tgz.meta ├── com.google.firebase.messaging-8.3.0.tgz ├── com.google.firebase.messaging-8.3.0.tgz.meta ├── google-services.json └── google-services.json.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AndroidResolverDependencies.xml ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── GvhProjectSettings.xml ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md └── Screen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/.vsconfig -------------------------------------------------------------------------------- /Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Animations.meta -------------------------------------------------------------------------------- /Assets/Animations/Entity.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Animations/Entity.controller -------------------------------------------------------------------------------- /Assets/Animations/Entity.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Animations/Entity.controller.meta -------------------------------------------------------------------------------- /Assets/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Fonts.meta -------------------------------------------------------------------------------- /Assets/Fonts/Supercell-Magic_1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Fonts/Supercell-Magic_1.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Supercell-Magic_1.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Fonts/Supercell-Magic_1.ttf.meta -------------------------------------------------------------------------------- /Assets/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/GoogleService-Info.plist -------------------------------------------------------------------------------- /Assets/GoogleService-Info.plist.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/GoogleService-Info.plist.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/Android.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/Android/AndroidManifest.xml.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/MMNViOSHapticsInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/MMNViOSHapticsInterface.m -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/MMNViOSHapticsInterface.m.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/MMNViOSHapticsInterface.m.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.mm -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.mm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.mm.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.swift -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.swift.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/MMNViOSCoreHapticsInterface.swift.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/UnitySwift-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/UnitySwift-Bridging-Header.h -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/UnitySwift-Bridging-Header.h.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/UnitySwift-Bridging-Header.h.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/module.modulemap -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Plugins/iOS/Swift/module.modulemap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Plugins/iOS/Swift/module.modulemap.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Resources.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Resources/MMNVPathDefinition.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Resources/MMNVPathDefinition.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Resources/MMNVPathDefinition.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Resources/MMNVPathDefinition.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/DefineSymbols.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/DefineSymbols.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/DefineSymbols/NiceVibrationsDefineSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/DefineSymbols/NiceVibrationsDefineSymbols.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/DefineSymbols/NiceVibrationsDefineSymbols.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/DefineSymbols/NiceVibrationsDefineSymbols.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVAndroidWaveFormAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVAndroidWaveFormAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVAndroidWaveFormAssetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVAndroidWaveFormAssetEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVAssetPostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVAssetPostProcessor.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVAssetPostProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVAssetPostProcessor.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVBuildPostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVBuildPostProcessor.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVBuildPostProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVBuildPostProcessor.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVRumbleWaveFormAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVRumbleWaveFormAssetEditor.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MMNVRumbleWaveFormAssetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MMNVRumbleWaveFormAssetEditor.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MoreMountains.NiceVibrations.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MoreMountains.NiceVibrations.Editor.asmdef -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Editor/MoreMountains.NiceVibrations.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Editor/MoreMountains.NiceVibrations.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAHAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAHAP.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAHAP.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAHAP.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAltThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAltThread.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAltThread.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAltThread.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroid.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroid.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroid.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroidWaveFormAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroidWaveFormAsset.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroidWaveFormAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVAndroidWaveFormAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVEnumCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVEnumCondition.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVEnumCondition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVEnumCondition.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVHapticTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVHapticTypes.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVHapticTypes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVHapticTypes.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVInspectorButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVInspectorButton.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVInspectorButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVInspectorButton.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVPlatform.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVPlatform.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVPlatform.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVRumbleWaveFormAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVRumbleWaveFormAsset.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNVRumbleWaveFormAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNVRumbleWaveFormAsset.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOS.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOS.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOSCoreHaptics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOSCoreHaptics.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOSCoreHaptics.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MMNViOSCoreHaptics.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MoreMountains.NiceVibrations.Haptics.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MoreMountains.NiceVibrations.Haptics.asmdef -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Haptics/MoreMountains.NiceVibrations.Haptics.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Haptics/MoreMountains.NiceVibrations.Haptics.asmdef.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMNVPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMNVPath.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMNVPath.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMNVPath.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManagerTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManagerTester.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManagerTester.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MMVibrationManagerTester.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MoreMountains.NiceVibrations.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MoreMountains.NiceVibrations.asmdef -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/NiceVibrations/MoreMountains.NiceVibrations.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/NiceVibrations/MoreMountains.NiceVibrations.asmdef.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Rumble.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Rumble.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Rumble/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Rumble/Editor.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Rumble/Editor/DefineSymbols.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Rumble/Editor/DefineSymbols.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Rumble/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Rumble/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Rumble/Scripts/MMNVRumble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Rumble/Scripts/MMNVRumble.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Scripts/Rumble/Scripts/MMNVRumble.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Scripts/Rumble/Scripts/MMNVRumble.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Sounds.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Sounds/NiceVibrationsContinuous.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Sounds/NiceVibrationsContinuous.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Sounds/NiceVibrationsContinuous.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Sounds/NiceVibrationsContinuous.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Sounds/NiceVibrationsTransient.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Sounds/NiceVibrationsTransient.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Common/Sounds/NiceVibrationsTransient.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Common/Sounds/NiceVibrationsTransient.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVBoing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVBoing.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVBoing.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVBoing.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVDrums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVDrums.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVDrums.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVDrums.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVGravel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVGravel.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVGravel.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVGravel.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVHeartbeats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVHeartbeats.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVHeartbeats.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVHeartbeats.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVInflate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVInflate.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVInflate.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVInflate.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVOscillate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVOscillate.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVOscillate.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVOscillate.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVRumble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVRumble.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVRumble.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVRumble.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVSparkle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVSparkle.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVSparkle.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack1/NVSparkle.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCaptainAHAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCaptainAHAP.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCaptainAHAP.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCaptainAHAP.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCarillon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCarillon.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCarillon.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVCarillon.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDice.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDice.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDice.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDrumsLoop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDrumsLoop.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDrumsLoop.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVDrumsLoop.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVGameOver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVGameOver.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVGameOver.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVGameOver.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVHeartbeats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVHeartbeats.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVHeartbeats.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVHeartbeats.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVLaser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVLaser.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVLaser.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVLaser.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVPowerOff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVPowerOff.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVPowerOff.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVPowerOff.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVReload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVReload.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVReload.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVReload.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVTeleport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVTeleport.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVTeleport.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AHAP/AHAPPack2/NVTeleport.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVCarillon.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVCarillon.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVCarillon.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVCarillon.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVDice.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVDice.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVDice.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVDice.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVDrumsLoop.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVDrumsLoop.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVGameOver.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVGameOver.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVGameOver.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVGameOver.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVHeartbeats.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVHeartbeats.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVLaser.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVLaser.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVLaser.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVLaser.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVPowerOff.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVPowerOff.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVPowerOff.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVPowerOff.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVReload.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVReload.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVTeleport.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/AndroidWaveforms/NVTeleport.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/IdleAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/IdleAnimation.anim -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/IdleAnimation.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/IdleAnimation.anim.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/ShakingAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/ShakingAnimation.anim -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/SwapAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/SwapAnimation.anim -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/SwapAnimation.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Animations/SwapAnimation.anim.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRCarillon.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRCarillon.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRDice.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRDice.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRDice.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRDice.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRDrumsLoop.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRDrumsLoop.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRGameOver.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRGameOver.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRHeartbeats.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRHeartbeats.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRLaser.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRLaser.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRLaser.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRLaser.asset.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRPowerOff.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRPowerOff.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRReload.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRReload.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRTeleport.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/RumbleWaveforms/NVRTeleport.asset -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoRotator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoRotator.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoRotator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Scripts/PresetDemoRotator.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVCarillon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVCarillon.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVCarillon.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVCarillon.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDice.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDice.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDice.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDrumsLoop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDrumsLoop.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDrumsLoop.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVDrumsLoop.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVGameOver.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVGameOver.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVGameOver.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVGameOver.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVHeartbeats.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVHeartbeats.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVHeartbeats.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVHeartbeats.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVLaser.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVLaser.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVLaser.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVLaser.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVPowerOff.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVPowerOff.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVPowerOff.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVPowerOff.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVReload.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVReload.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVReload.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVReload.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVTeleport.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVTeleport.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVTeleport.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sounds/NVTeleport.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sprites.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sprites/NVPresetsIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sprites/NVPresetsIcons.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sprites/NVPresetsIcons.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/AHAPPresetsDemo/Sprites/NVPresetsIcons.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/HitAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/HitAnimation.anim -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/HitAnimation.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/HitAnimation.anim.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/IdleAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/IdleAnimation.anim -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/IdleAnimation.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/IdleAnimation.anim.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/NVBallAnimatorController.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/NVBallAnimatorController.controller -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/NVBallAnimatorController.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/NVBallAnimatorController.controller.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Physics2DMaterials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Physics2DMaterials.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoBall.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoBall.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoBall.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoWall.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoWall.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallDemoWall.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallPusher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallPusher.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallPusher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallPusher.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallTouchZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallTouchZone.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallTouchZone.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Scripts/BallTouchZone.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBall.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBall.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBall.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.mat -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.mat.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/BallDemo/Sprites/NVBallParticle.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/CarDemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/CarDemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/CarDemoManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/CarDemoManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/PowerBarElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/PowerBarElement.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/PowerBarElement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Scripts/PowerBarElement.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sounds.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sounds/NVCarEngine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sounds/NVCarEngine.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sounds/NVCarEngine.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sounds/NVCarEngine.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCar.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCar.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCarWheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCarWheel.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCarWheel.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/CarDemo/Sprites/NVCarWheel.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/ContinuousDemo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/ContinuousDemo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/ContinuousDemo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/ContinuousDemo/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo/RegularPresetsDemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo/RegularPresetsDemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo/Sprites.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo/Sprites/RegularPresetsIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/RegularPresetsDemo/Sprites/RegularPresetsIcons.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/TransientDemo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/TransientDemo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/TransientDemo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/TransientDemo/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/AHAP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/AHAP.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/AHAP/NVSpring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/AHAP/NVSpring.json -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/AHAP/NVSpring.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/AHAP/NVSpring.json.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleIdle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleIdle.anim -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleIdle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleIdle.anim.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleSpark.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleSpark.anim -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleSpark.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Animations/WobbleSpark.anim.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Prefabs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Prefabs/WobbleButton.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Prefabs/WobbleButton.prefab -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Prefabs/WobbleButton.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Prefabs/WobbleButton.prefab.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleButton.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleButton.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleDemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleDemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleDemoManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Scripts/WobbleDemoManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Sounds.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Sounds/NVWobbleSpring.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Sounds/NVWobbleSpring.wav -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Sounds/NVWobbleSpring.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/DemoAssets/WobbleDemo/Sounds/NVWobbleSpring.wav.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/MoreMountains.NiceVibrations.Demos.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/MoreMountains.NiceVibrations.Demos.asmdef -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/MoreMountains.NiceVibrations.Demos.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/MoreMountains.NiceVibrations.Demos.asmdef.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/NiceVibrationsDemo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/NiceVibrationsDemo.unity -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/NiceVibrationsDemo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/NiceVibrationsDemo.unity.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/BIG JOHN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/BIG JOHN.otf -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/BIG JOHN.otf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/BIG JOHN.otf.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Bold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Bold.ttf.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Light.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Light.ttf.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Medium.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Medium.ttf.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Regular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Fonts/RobotoMono-Regular.ttf.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/HorizontalSliderComponent.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/HorizontalSliderComponent.prefab -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/HorizontalSliderComponent.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/HorizontalSliderComponent.prefab.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/PaginationDot.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/PaginationDot.prefab -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/PaginationDot.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/PaginationDot.prefab.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalProgressBar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalProgressBar.prefab -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalProgressBar.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalProgressBar.prefab.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalSliderComponent.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalSliderComponent.prefab -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalSliderComponent.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Prefabs/VerticalSliderComponent.prefab.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/DemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/DemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/DemoManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/DemoManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/NiceVibrationsDemoHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/NiceVibrationsDemoHelpers.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/NiceVibrationsDemoHelpers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/NiceVibrationsDemoHelpers.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/SoundSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/SoundSwitch.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/SoundSwitch.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/SoundSwitch.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/HapticCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/HapticCurve.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/HapticCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/HapticCurve.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSCounter.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSCounter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSCounter.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSUnlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSUnlock.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSUnlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMFPSUnlock.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMKnob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMKnob.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMKnob.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMKnob.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMProgressBar.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMProgressBar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMProgressBar.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSignal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSignal.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSignal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSignal.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSpriteReplace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSpriteReplace.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSpriteReplace.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSpriteReplace.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSwitch.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSwitch.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMSwitch.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMTouchButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMTouchButton.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMTouchButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMTouchButton.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMUIShaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMUIShaker.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMUIShaker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/MMUIShaker.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/Pagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/Pagination.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/UI/Pagination.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/UI/Pagination.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/V2DemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/V2DemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/V2DemoManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/V2DemoManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/VersionNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/VersionNumber.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Scripts/VersionNumber.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Scripts/VersionNumber.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Shaders.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Shaders/CurveMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Shaders/CurveMaterial.mat -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Shaders/CurveMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Shaders/CurveMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.mat -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.mat.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.shader -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Shaders/MaskedUI.shader.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV1x1White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV1x1White.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV1x1White.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV1x1White.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV3Cols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV3Cols.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV3Cols.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV3Cols.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV3Dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV3Dots.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV3Dots.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV3Dots.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV7Dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV7Dots.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NV7Dots.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NV7Dots.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVArrow.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVArrow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVArrow.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVDottedPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVDottedPattern.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVDottedPattern.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVDottedPattern.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVKnob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVKnob.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVKnob.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVKnob.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoNice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoNice.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoNice.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoNice.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoVibrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoVibrations.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoVibrations.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVLogoVibrations.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVPaginationDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVPaginationDot.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVPaginationDot.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVPaginationDot.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCorners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCorners.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCorners.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCorners.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCornersBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCornersBig.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCornersBig.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVRoundedCornersBig.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchBackground.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchBackground.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchBackground.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchIndicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchIndicator.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchIndicator.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchIndicator.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchKnob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchKnob.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchKnob.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVSwitchKnob.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVVerticalProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVVerticalProgressBar.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_Common/Sprites/NVVerticalProgressBar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_Common/Sprites/NVVerticalProgressBar.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Scripts.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Scripts/NiceVibrationsDemoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Scripts/NiceVibrationsDemoManager.cs -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Scripts/NiceVibrationsDemoManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Scripts/NiceVibrationsDemoManager.cs.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/DemoBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/DemoBackground.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/DemoBackground.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/DemoBackground.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/MoreMountainsLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/MoreMountainsLogo.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/MoreMountainsLogo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/MoreMountainsLogo.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsIcon.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsIcon.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsLogo.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsLogo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/NiceVibrationsLogo.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/RoundedCorners10Stroke5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/RoundedCorners10Stroke5.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/RoundedCorners10Stroke5.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/RoundedCorners10Stroke5.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/icon-nice-vibrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/icon-nice-vibrations.png -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/icon-nice-vibrations.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/Sprites/icon-nice-vibrations.png.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/v1Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/v1Demo.unity -------------------------------------------------------------------------------- /Assets/NiceVibrations/Demos/_OLD/v1Demo/v1Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/Demos/_OLD/v1Demo/v1Demo.unity.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v1.7.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v1.7.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v1.7/NiceVibrations-v-1-7-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v1.7/NiceVibrations-v-1-7-readme.txt -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v1.7/NiceVibrations-v-1-7-readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v1.7/NiceVibrations-v-1-7-readme.txt.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v1.7/NiceVibrations-v-1-7.unitypackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v1.7/NiceVibrations-v-1-7.unitypackage.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v2.0.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v2.0.1.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v2.0.1/NiceVibrations-v-2-0-1-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v2.0.1/NiceVibrations-v-2-0-1-readme.txt -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v2.0.1/NiceVibrations-v-2-0-1-readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v2.0.1/NiceVibrations-v-2-0-1-readme.txt.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/OlderVersions/v2.0.1/NiceVibrations-v-2-0-1.unitypackage.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/OlderVersions/v2.0.1/NiceVibrations-v-2-0-1.unitypackage.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/ThirdParty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/ThirdParty.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/ThirdParty/Newtonsoft.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/ThirdParty/Newtonsoft.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/ThirdParty/Newtonsoft/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/ThirdParty/Newtonsoft/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/NiceVibrations/ThirdParty/Newtonsoft/Newtonsoft.Json.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/ThirdParty/Newtonsoft/Newtonsoft.Json.dll.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/ThirdParty/Newtonsoft/NewtonsoftJsonLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/ThirdParty/Newtonsoft/NewtonsoftJsonLicense.txt -------------------------------------------------------------------------------- /Assets/NiceVibrations/ThirdParty/Newtonsoft/NewtonsoftJsonLicense.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/ThirdParty/Newtonsoft/NewtonsoftJsonLicense.txt.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/license.txt -------------------------------------------------------------------------------- /Assets/NiceVibrations/license.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/license.txt.meta -------------------------------------------------------------------------------- /Assets/NiceVibrations/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/readme.txt -------------------------------------------------------------------------------- /Assets/NiceVibrations/readme.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/NiceVibrations/readme.txt.meta -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Assets/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/AndroidManifest.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/AndroidManifest.xml -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/AndroidManifest.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/project.properties -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/project.properties.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/project.properties.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/res.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/res/values.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/res/values.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/res/values/google-services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/res/values/google-services.xml -------------------------------------------------------------------------------- /Assets/Plugins/Android/FirebaseApp.androidlib/res/values/google-services.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/FirebaseApp.androidlib/res/values/google-services.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.annotation.annotation-1.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.annotation.annotation-1.1.0.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.annotation.annotation-1.1.0.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.annotation.annotation-1.1.0.jar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.arch.core.core-common-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.arch.core.core-common-2.0.0.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.arch.core.core-common-2.0.0.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.arch.core.core-common-2.0.0.jar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.arch.core.core-runtime-2.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.arch.core.core-runtime-2.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.arch.core.core-runtime-2.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.arch.core.core-runtime-2.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.asynclayoutinflater.asynclayoutinflater-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.asynclayoutinflater.asynclayoutinflater-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.asynclayoutinflater.asynclayoutinflater-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.asynclayoutinflater.asynclayoutinflater-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.collection.collection-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.collection.collection-1.0.0.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.collection.collection-1.0.0.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.collection.collection-1.0.0.jar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.coordinatorlayout.coordinatorlayout-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.coordinatorlayout.coordinatorlayout-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.coordinatorlayout.coordinatorlayout-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.coordinatorlayout.coordinatorlayout-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.core.core-1.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.core.core-1.2.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.core.core-1.2.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.core.core-1.2.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.cursoradapter.cursoradapter-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.cursoradapter.cursoradapter-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.cursoradapter.cursoradapter-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.cursoradapter.cursoradapter-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.customview.customview-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.customview.customview-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.customview.customview-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.customview.customview-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.documentfile.documentfile-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.documentfile.documentfile-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.documentfile.documentfile-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.documentfile.documentfile-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.drawerlayout.drawerlayout-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.drawerlayout.drawerlayout-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.drawerlayout.drawerlayout-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.drawerlayout.drawerlayout-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.fragment.fragment-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.fragment.fragment-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.fragment.fragment-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.fragment.fragment-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.interpolator.interpolator-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.interpolator.interpolator-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.interpolator.interpolator-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.interpolator.interpolator-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.legacy.legacy-support-core-ui-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.legacy.legacy-support-core-ui-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.legacy.legacy-support-core-ui-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.legacy.legacy-support-core-ui-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.legacy.legacy-support-core-utils-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.legacy.legacy-support-core-utils-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.legacy.legacy-support-core-utils-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.legacy.legacy-support-core-utils-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-common-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-common-2.0.0.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-common-2.0.0.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-common-2.0.0.jar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-2.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-2.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-2.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-2.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-core-2.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-core-2.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-core-2.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-livedata-core-2.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-runtime-2.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-runtime-2.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-runtime-2.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-runtime-2.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-viewmodel-2.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-viewmodel-2.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.lifecycle.lifecycle-viewmodel-2.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.lifecycle.lifecycle-viewmodel-2.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.loader.loader-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.loader.loader-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.loader.loader-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.loader.loader-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.localbroadcastmanager.localbroadcastmanager-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.localbroadcastmanager.localbroadcastmanager-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.localbroadcastmanager.localbroadcastmanager-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.localbroadcastmanager.localbroadcastmanager-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.print.print-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.print.print-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.print.print-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.print.print-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.slidingpanelayout.slidingpanelayout-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.slidingpanelayout.slidingpanelayout-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.slidingpanelayout.slidingpanelayout-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.slidingpanelayout.slidingpanelayout-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.swiperefreshlayout.swiperefreshlayout-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.swiperefreshlayout.swiperefreshlayout-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.swiperefreshlayout.swiperefreshlayout-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.swiperefreshlayout.swiperefreshlayout-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.versionedparcelable.versionedparcelable-1.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.versionedparcelable.versionedparcelable-1.1.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.versionedparcelable.versionedparcelable-1.1.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.versionedparcelable.versionedparcelable-1.1.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.viewpager.viewpager-1.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.viewpager.viewpager-1.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/androidx.viewpager.viewpager-1.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/androidx.viewpager.viewpager-1.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.datatransport.transport-api-3.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.datatransport.transport-api-3.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.datatransport.transport-api-3.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.datatransport.transport-api-3.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.datatransport.transport-backend-cct-3.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.datatransport.transport-backend-cct-3.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.datatransport.transport-runtime-3.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.datatransport.transport-runtime-3.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.datatransport.transport-runtime-3.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.datatransport.transport-runtime-3.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-ads-identifier-17.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-ads-identifier-17.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-ads-identifier-17.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-ads-identifier-17.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-base-17.6.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-base-17.6.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-base-17.6.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-base-17.6.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-basement-17.6.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-basement-17.6.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-basement-17.6.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-basement-17.6.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-cloud-messaging-16.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-cloud-messaging-16.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-measurement-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-measurement-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-measurement-19.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-measurement-19.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-measurement-api-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-measurement-api-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-measurement-base-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-measurement-base-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-measurement-impl-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-measurement-impl-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-measurement-sdk-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-measurement-sdk-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-measurement-sdk-api-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-measurement-sdk-api-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-stats-17.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-stats-17.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-stats-17.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-stats-17.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-tasks-17.2.1.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-tasks-17.2.1.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.android.gms.play-services-tasks-17.2.1.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.android.gms.play-services-tasks-17.2.1.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-analytics-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-analytics-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-analytics-19.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-analytics-19.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-analytics-unity-8.3.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-analytics-unity-8.3.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-analytics-unity-8.3.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-analytics-unity-8.3.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-annotations-16.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-annotations-16.0.0.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-annotations-16.0.0.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-annotations-16.0.0.jar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-app-unity-8.3.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-app-unity-8.3.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-app-unity-8.3.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-app-unity-8.3.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-common-20.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-common-20.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-common-20.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-common-20.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-components-17.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-components-17.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-components-17.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-components-17.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-datatransport-18.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-datatransport-18.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-datatransport-18.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-datatransport-18.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-encoders-17.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-encoders-17.0.0.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-encoders-17.0.0.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-encoders-17.0.0.jar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-encoders-json-18.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-encoders-json-18.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-encoders-json-18.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-encoders-json-18.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-iid-21.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-iid-21.1.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-iid-21.1.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-iid-21.1.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-iid-interop-17.1.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-iid-interop-17.1.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-iid-interop-17.1.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-iid-interop-17.1.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-installations-17.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-installations-17.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-installations-17.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-installations-17.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-installations-interop-17.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-installations-interop-17.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-installations-interop-17.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-installations-interop-17.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-measurement-connector-19.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-measurement-connector-19.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-measurement-connector-19.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-measurement-connector-19.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-messaging-22.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-messaging-22.0.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-messaging-22.0.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-messaging-22.0.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-messaging-unity-8.3.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-messaging-unity-8.3.0.aar -------------------------------------------------------------------------------- /Assets/Plugins/Android/com.google.firebase.firebase-messaging-unity-8.3.0.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/com.google.firebase.firebase-messaging-unity-8.3.0.aar.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/javax.inject.javax.inject-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/javax.inject.javax.inject-1.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/javax.inject.javax.inject-1.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Plugins/Android/javax.inject.javax.inject-1.jar.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Arrow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Arrow.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Arrow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Arrow.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/DamageText.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/DamageText.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/DamageText.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/DamageText.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entity 1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity 1.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Entity 1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity 1.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entity 2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity 2.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Entity 2.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity 2.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entity 3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity 3.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Entity 3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity 3.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Entity.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Entity.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Entity.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Hit.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Hit.anim -------------------------------------------------------------------------------- /Assets/Prefabs/Hit.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Hit.anim.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Image (Upgrade tab).prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Image (Upgrade tab).prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Image (Upgrade tab).prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Image (Upgrade tab).prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Rock.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Rock.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Rock.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Rock.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Shield.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Shield.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Shield.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Prefabs/Shield.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/GameScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scenes/GameScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/GameScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scenes/GameScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/MechaincTestScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scenes/MechaincTestScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/MechaincTestScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scenes/MechaincTestScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Arrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Arrow.cs -------------------------------------------------------------------------------- /Assets/Scripts/Arrow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Arrow.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ArrowShooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/ArrowShooter.cs -------------------------------------------------------------------------------- /Assets/Scripts/ArrowShooter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/ArrowShooter.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/AxeUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/AxeUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/AxeUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/AxeUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BattleDamage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/BattleDamage.cs -------------------------------------------------------------------------------- /Assets/Scripts/BattleDamage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/BattleDamage.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BowUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/BowUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/BowUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/BowUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/CatapultUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/CatapultUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/CatapultUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/CatapultUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ClickableArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/ClickableArea.cs -------------------------------------------------------------------------------- /Assets/Scripts/ClickableArea.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/ClickableArea.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/CrossbowUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/CrossbowUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/CrossbowUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/CrossbowUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/DataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/DataLoader.cs -------------------------------------------------------------------------------- /Assets/Scripts/DataLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/DataLoader.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Entity.cs -------------------------------------------------------------------------------- /Assets/Scripts/Entity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Entity.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/EntitySpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/EntitySpawner.cs -------------------------------------------------------------------------------- /Assets/Scripts/EntitySpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/EntitySpawner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json.meta -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSON.cs -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSON.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSON.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSONBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSONBinary.cs -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSONBinary.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSONBinary.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSONDotNetTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSONDotNetTypes.cs -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSONDotNetTypes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSONDotNetTypes.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSONUnity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSONUnity.cs -------------------------------------------------------------------------------- /Assets/Scripts/Json/SimpleJSONUnity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Json/SimpleJSONUnity.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/MaceUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/MaceUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/MaceUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/MaceUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Player.cs -------------------------------------------------------------------------------- /Assets/Scripts/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Player.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/PlayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/PlayerInfo.cs -------------------------------------------------------------------------------- /Assets/Scripts/PlayerInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/PlayerInfo.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/PlayerStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/PlayerStats.cs -------------------------------------------------------------------------------- /Assets/Scripts/PlayerStats.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/PlayerStats.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/PoleaxeUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/PoleaxeUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/PoleaxeUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/PoleaxeUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Rock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Rock.cs -------------------------------------------------------------------------------- /Assets/Scripts/Rock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Rock.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/RockUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/RockUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/RockUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/RockUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/ShieldSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/ShieldSpawner.cs -------------------------------------------------------------------------------- /Assets/Scripts/ShieldSpawner.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/ShieldSpawner.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/SwordUpgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/SwordUpgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/SwordUpgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/SwordUpgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/UIManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/UIManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/UIManager.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Upgrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Upgrade.cs -------------------------------------------------------------------------------- /Assets/Scripts/Upgrade.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/Upgrade.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/UpgradeTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/UpgradeTab.cs -------------------------------------------------------------------------------- /Assets/Scripts/UpgradeTab.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Scripts/UpgradeTab.cs.meta -------------------------------------------------------------------------------- /Assets/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sounds.meta -------------------------------------------------------------------------------- /Assets/Sounds/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sounds/music.mp3 -------------------------------------------------------------------------------- /Assets/Sounds/music.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sounds/music.mp3.meta -------------------------------------------------------------------------------- /Assets/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites.meta -------------------------------------------------------------------------------- /Assets/Sprites/1x1 pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/1x1 pixel.png -------------------------------------------------------------------------------- /Assets/Sprites/1x1 pixel.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/1x1 pixel.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/arrow.png -------------------------------------------------------------------------------- /Assets/Sprites/arrow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/arrow.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/arrows.png -------------------------------------------------------------------------------- /Assets/Sprites/arrows.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/arrows.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/ax_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/ax_icon.png -------------------------------------------------------------------------------- /Assets/Sprites/ax_icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/ax_icon.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/axe_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/axe_icon.png -------------------------------------------------------------------------------- /Assets/Sprites/axe_icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/axe_icon.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/balance.png -------------------------------------------------------------------------------- /Assets/Sprites/balance.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/balance.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/bg.png -------------------------------------------------------------------------------- /Assets/Sprites/bg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/bg.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/bg_dark.png -------------------------------------------------------------------------------- /Assets/Sprites/bg_dark.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/bg_dark.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/buy.png -------------------------------------------------------------------------------- /Assets/Sprites/buy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/buy.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/catapult_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/catapult_icon.png -------------------------------------------------------------------------------- /Assets/Sprites/catapult_icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/catapult_icon.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/coin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/coin_icon.png -------------------------------------------------------------------------------- /Assets/Sprites/coin_icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/coin_icon.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/crossbow_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/crossbow_icon.png -------------------------------------------------------------------------------- /Assets/Sprites/crossbow_icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/crossbow_icon.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/dark_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/dark_buy.png -------------------------------------------------------------------------------- /Assets/Sprites/dark_buy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/dark_buy.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/darkcoin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/darkcoin_icon.png -------------------------------------------------------------------------------- /Assets/Sprites/darkcoin_icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/darkcoin_icon.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/gun_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/gun_window.png -------------------------------------------------------------------------------- /Assets/Sprites/gun_window.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/gun_window.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/hpbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/hpbar_bg.png -------------------------------------------------------------------------------- /Assets/Sprites/hpbar_bg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/hpbar_bg.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/hpbar_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/hpbar_filled.png -------------------------------------------------------------------------------- /Assets/Sprites/hpbar_filled.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/hpbar_filled.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/icon_app.png -------------------------------------------------------------------------------- /Assets/Sprites/icon_app.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/icon_app.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/light_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/light_buy.png -------------------------------------------------------------------------------- /Assets/Sprites/light_buy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/light_buy.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/mace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/mace.png -------------------------------------------------------------------------------- /Assets/Sprites/mace.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/mace.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/monster1 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster1 1.png -------------------------------------------------------------------------------- /Assets/Sprites/monster1 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster1 1.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/monster2 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster2 1.png -------------------------------------------------------------------------------- /Assets/Sprites/monster2 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster2 1.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/monster3 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster3 1.png -------------------------------------------------------------------------------- /Assets/Sprites/monster3 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster3 1.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/monster4 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster4 1.png -------------------------------------------------------------------------------- /Assets/Sprites/monster4 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/monster4 1.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/platform 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/platform 1.png -------------------------------------------------------------------------------- /Assets/Sprites/platform 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/platform 1.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/shield_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/shield_icon.png -------------------------------------------------------------------------------- /Assets/Sprites/shield_icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/shield_icon.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/slot_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/slot_gun.png -------------------------------------------------------------------------------- /Assets/Sprites/slot_gun.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/slot_gun.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/stone.png -------------------------------------------------------------------------------- /Assets/Sprites/stone.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/stone.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/sword.png -------------------------------------------------------------------------------- /Assets/Sprites/sword.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/sword.png.meta -------------------------------------------------------------------------------- /Assets/Sprites/wooden_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/wooden_frame.png -------------------------------------------------------------------------------- /Assets/Sprites/wooden_frame.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/Sprites/wooden_frame.png.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /Assets/StreamingAssets/google-services-desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/StreamingAssets/google-services-desktop.json -------------------------------------------------------------------------------- /Assets/StreamingAssets/google-services-desktop.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/StreamingAssets/google-services-desktop.json.meta -------------------------------------------------------------------------------- /Assets/com.google.external-dependency-manager-1.2.166.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.external-dependency-manager-1.2.166.tgz -------------------------------------------------------------------------------- /Assets/com.google.external-dependency-manager-1.2.166.tgz.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.external-dependency-manager-1.2.166.tgz.meta -------------------------------------------------------------------------------- /Assets/com.google.firebase.analytics-8.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.analytics-8.3.0.tgz -------------------------------------------------------------------------------- /Assets/com.google.firebase.analytics-8.3.0.tgz.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.analytics-8.3.0.tgz.meta -------------------------------------------------------------------------------- /Assets/com.google.firebase.app-8.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.app-8.3.0.tgz -------------------------------------------------------------------------------- /Assets/com.google.firebase.app-8.3.0.tgz.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.app-8.3.0.tgz.meta -------------------------------------------------------------------------------- /Assets/com.google.firebase.crashlytics-8.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.crashlytics-8.3.0.tgz -------------------------------------------------------------------------------- /Assets/com.google.firebase.crashlytics-8.3.0.tgz.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.crashlytics-8.3.0.tgz.meta -------------------------------------------------------------------------------- /Assets/com.google.firebase.messaging-8.3.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.messaging-8.3.0.tgz -------------------------------------------------------------------------------- /Assets/com.google.firebase.messaging-8.3.0.tgz.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/com.google.firebase.messaging-8.3.0.tgz.meta -------------------------------------------------------------------------------- /Assets/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/google-services.json -------------------------------------------------------------------------------- /Assets/google-services.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Assets/google-services.json.meta -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AndroidResolverDependencies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/AndroidResolverDependencies.xml -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GvhProjectSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/GvhProjectSettings.xml -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/README.md -------------------------------------------------------------------------------- /Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-mouse/clicker-idle/HEAD/Screen.png --------------------------------------------------------------------------------