├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── osu.Game.Rulesets.Touhosu.Tests ├── TestSceneOsuGame.cs ├── TestSceneTouhosuPlayer.cs ├── VisualTestRunner.cs └── osu.Game.Rulesets.Touhosu.Tests.csproj ├── osu.Game.Rulesets.Touhosu.sln ├── osu.Game.Rulesets.Touhosu.sln.DotSettings └── osu.Game.Rulesets.Touhosu ├── Beatmaps ├── TouhosuBeatmap.cs └── TouhosuBeatmapConverter.cs ├── Configuration └── TouhosuRulesetConfigManager.cs ├── Difficulty └── TouhosuDifficultyCalculator.cs ├── Extensions ├── ConversionExtensions.cs ├── MathExtensions.cs └── TouhosuExtensions.cs ├── Judgements ├── TickJudgement.cs └── TouhosuJudgement.cs ├── Mods ├── TouhosuModAutoplay.cs ├── TouhosuModDamageMultiplier.cs ├── TouhosuModDaycore.cs ├── TouhosuModDoubleTime.cs ├── TouhosuModEasy.cs ├── TouhosuModHalfTime.cs ├── TouhosuModHidden.cs ├── TouhosuModNightcore.cs ├── TouhosuModNoFail.cs ├── TouhosuModNoRegen.cs └── TouhosuModSuddenDeath.cs ├── Objects ├── AngeledProjectile.cs ├── ConstantMovingProjectile.cs ├── Drawables │ ├── DrawableAngeledProjectile.cs │ ├── DrawableConstantMovingProjectile.cs │ ├── DrawableInstantProjectile.cs │ ├── DrawableProjectile.cs │ ├── DrawableTouhosuHitObject.cs │ └── Pieces │ │ └── ProjectilePiece.cs ├── InstantProjectile.cs ├── Projectile.cs └── TouhosuHitObject.cs ├── Replays ├── TouhosuAutoGenerator.cs ├── TouhosuFramedReplayInputHandler.cs └── TouhosuReplayFrame.cs ├── Resources ├── Samples │ └── graze.mp3 └── Textures │ ├── HUD │ └── HP │ │ ├── 0.png │ │ ├── 25.png │ │ ├── 50.png │ │ ├── 75.png │ │ └── full.png │ ├── Player │ ├── Player │ │ ├── idle-1.png │ │ ├── idle-2.png │ │ ├── idle-3.png │ │ ├── idle-4.png │ │ ├── idle-5.png │ │ ├── idle-6.png │ │ ├── idle-7.png │ │ ├── idle-8.png │ │ ├── left-1.png │ │ ├── left-2.png │ │ ├── left-3.png │ │ ├── left-4.png │ │ ├── left-5.png │ │ ├── right-1.png │ │ ├── right-2.png │ │ ├── right-3.png │ │ ├── right-4.png │ │ └── right-5.png │ ├── card.png │ └── focus.png │ ├── Projectiles │ ├── Grain │ │ ├── overlay.png │ │ └── texture.png │ ├── Knife │ │ ├── overlay.png │ │ └── texture.png │ └── Sphere │ │ ├── overlay.png │ │ └── texture.png │ └── logo.png ├── Scoring ├── TouhosuHealthProcessor.cs └── TouhosuHitWindows.cs ├── TouhosuInputManager.cs ├── TouhosuRuleset.cs ├── UI ├── DrawableTouhosuRuleset.cs ├── HUD │ ├── HealthDisplay.cs │ └── PlayfieldBackground.cs ├── Objects │ ├── Card.cs │ ├── CardsController.cs │ ├── FocusAnimation.cs │ ├── PlayerAnimation.cs │ └── TouhosuPlayer.cs ├── TouhosuPlayfield.cs ├── TouhosuPlayfieldAdjustmentContainer.cs ├── TouhosuReplayRecorder.cs └── TouhosuSettingsSubsection.cs └── osu.Game.Rulesets.Touhosu.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/README.md -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu.Tests/TestSceneOsuGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu.Tests/TestSceneOsuGame.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu.Tests/TestSceneTouhosuPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu.Tests/TestSceneTouhosuPlayer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu.Tests/VisualTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu.Tests/VisualTestRunner.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu.Tests/osu.Game.Rulesets.Touhosu.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu.Tests/osu.Game.Rulesets.Touhosu.Tests.csproj -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu.sln -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu.sln.DotSettings -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Beatmaps/TouhosuBeatmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Beatmaps/TouhosuBeatmap.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Beatmaps/TouhosuBeatmapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Beatmaps/TouhosuBeatmapConverter.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Configuration/TouhosuRulesetConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Configuration/TouhosuRulesetConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Difficulty/TouhosuDifficultyCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Difficulty/TouhosuDifficultyCalculator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Extensions/ConversionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Extensions/ConversionExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Extensions/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Extensions/MathExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Extensions/TouhosuExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Extensions/TouhosuExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Judgements/TickJudgement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Judgements/TickJudgement.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Judgements/TouhosuJudgement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Judgements/TouhosuJudgement.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModAutoplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModAutoplay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModDamageMultiplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModDamageMultiplier.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModDaycore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModDaycore.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModDoubleTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModDoubleTime.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModEasy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModEasy.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModHalfTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModHalfTime.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModHidden.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModHidden.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModNightcore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModNightcore.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModNoFail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModNoFail.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModNoRegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModNoRegen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Mods/TouhosuModSuddenDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Mods/TouhosuModSuddenDeath.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/AngeledProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/AngeledProjectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/ConstantMovingProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/ConstantMovingProjectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableAngeledProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableAngeledProjectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableConstantMovingProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableConstantMovingProjectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableInstantProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableInstantProjectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableProjectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableTouhosuHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableTouhosuHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/Drawables/Pieces/ProjectilePiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/Drawables/Pieces/ProjectilePiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/InstantProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/InstantProjectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/Projectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/Projectile.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Objects/TouhosuHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Objects/TouhosuHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Replays/TouhosuAutoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Replays/TouhosuAutoGenerator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Replays/TouhosuFramedReplayInputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Replays/TouhosuFramedReplayInputHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Replays/TouhosuReplayFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Replays/TouhosuReplayFrame.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Samples/graze.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Samples/graze.mp3 -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/0.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/25.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/50.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/75.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/HUD/HP/full.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-1.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-2.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-3.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-4.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-5.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-6.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-7.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/idle-8.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-1.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-2.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-3.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-4.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/left-5.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-1.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-2.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-3.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-4.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/Player/right-5.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/card.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Player/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Player/focus.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Grain/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Grain/overlay.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Grain/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Grain/texture.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Knife/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Knife/overlay.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Knife/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Knife/texture.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Sphere/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Sphere/overlay.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Sphere/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/Projectiles/Sphere/texture.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Resources/Textures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Resources/Textures/logo.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Scoring/TouhosuHealthProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Scoring/TouhosuHealthProcessor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/Scoring/TouhosuHitWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/Scoring/TouhosuHitWindows.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/TouhosuInputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/TouhosuInputManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/TouhosuRuleset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/TouhosuRuleset.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/DrawableTouhosuRuleset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/DrawableTouhosuRuleset.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/HUD/HealthDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/HUD/HealthDisplay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/HUD/PlayfieldBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/HUD/PlayfieldBackground.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/Objects/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/Objects/Card.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/Objects/CardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/Objects/CardsController.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/Objects/FocusAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/Objects/FocusAnimation.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/Objects/PlayerAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/Objects/PlayerAnimation.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/Objects/TouhosuPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/Objects/TouhosuPlayer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/TouhosuPlayfield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/TouhosuPlayfield.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/TouhosuPlayfieldAdjustmentContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/TouhosuPlayfieldAdjustmentContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/TouhosuReplayRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/TouhosuReplayRecorder.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/UI/TouhosuSettingsSubsection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/UI/TouhosuSettingsSubsection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Touhosu/osu.Game.Rulesets.Touhosu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVAST9919/touhosu/HEAD/osu.Game.Rulesets.Touhosu/osu.Game.Rulesets.Touhosu.csproj --------------------------------------------------------------------------------