├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug-report.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── experimental-release.yml │ └── release.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── crowdin.yml ├── osu.Game.Rulesets.Tau.Tests ├── Conversion │ ├── TauConversionTestScene.cs │ ├── TestSceneBeatConversion.cs │ ├── TestSceneHardBeatConversion.cs │ ├── TestSceneSliderConversion.cs │ └── TestSceneSpinnerConversion.cs ├── Mods │ ├── TestSceneAutopilot.cs │ ├── TestSceneAutoplay.cs │ ├── TestSceneCinema.cs │ ├── TestSceneDoubleTime.cs │ ├── TestSceneDual.cs │ ├── TestSceneEasy.cs │ ├── TestSceneFadeIn.cs │ ├── TestSceneFadeOut.cs │ ├── TestSceneFlashlight.cs │ ├── TestSceneHalfTime.cs │ ├── TestSceneHardRock.cs │ ├── TestSceneInverse.cs │ ├── TestSceneNightcore.cs │ ├── TestScenePerfect.cs │ ├── TestSceneRelax.cs │ ├── TestSceneRoundabout.cs │ ├── TestSceneShowoff.cs │ ├── TestSceneSuddenDeath.cs │ └── TestSceneTraceable.cs ├── NonVisual │ └── PolarSliderPathTests.cs ├── Objects │ ├── TestSceneAutoplayBeat.cs │ ├── TestSceneAutoplaySlider.cs │ ├── TestSceneBeat.cs │ ├── TestSceneHardBeat.cs │ ├── TestSceneSlider.cs │ ├── TestSceneSliderHardBeat.cs │ └── TestSceneStrictHardBeat.cs ├── TauModTestScene.cs ├── TauSkinnableTestScene.cs ├── TauTestScene.cs ├── TestSceneClassicKiai.cs ├── TestSceneDrawableJudgement.cs ├── TestSceneKiaiEffects.cs ├── TestSceneOsuGame.cs ├── TestSceneOsuPlayer.cs ├── TestScenePaddleDistribution.cs ├── TestSceneResumeOverlay.cs ├── TestSceneTauCursor.cs ├── TestSceneTauPlayfield.cs ├── TestSceneTurbulenceKiai.cs ├── TestSceneVisualizer.cs ├── VisualTestRunner.cs └── osu.Game.Rulesets.Tau.Tests.csproj ├── osu.Game.Rulesets.Tau.sln ├── osu.Game.Rulesets.Tau.sln.DotSettings └── osu.Game.Rulesets.Tau ├── Allocation └── MemoryPool.cs ├── Beatmaps ├── TauBeatmap.cs └── TauBeatmapConverter.cs ├── Configuration ├── KiaiType.cs └── TauRulesetConfigManager.cs ├── Difficulty ├── Evaluators │ ├── AimEvaluator.cs │ ├── ComplexityEvaluator.cs │ ├── RhythmEvaluator.cs │ └── SpeedEvaluator.cs ├── Preprocessing │ ├── TauAngledDifficultyHitObject.cs │ └── TauDifficultyHitObject.cs ├── Skills │ ├── Aim.cs │ ├── Complexity.cs │ ├── Speed.cs │ └── TauStrainSkill.cs ├── TauDifficultyAttributes.cs ├── TauDifficultyCalculator.cs ├── TauPerformanceAttribute.cs └── TauPerformanceCalculator.cs ├── Extensions.cs ├── Judgements ├── TauJudgement.cs ├── TauJudgementResult.cs └── TauTickJudgement.cs ├── Localisation ├── BeatmapStrings.cs ├── InputStrings.cs ├── KiaiTypeStrings.cs ├── ModStrings.cs ├── SettingStrings.cs ├── Translations │ ├── Beatmap.ar.resx │ ├── Beatmap.be.resx │ ├── Beatmap.bg.resx │ ├── Beatmap.ca.resx │ ├── Beatmap.cs.resx │ ├── Beatmap.da.resx │ ├── Beatmap.de.resx │ ├── Beatmap.el.resx │ ├── Beatmap.es.resx │ ├── Beatmap.fa.resx │ ├── Beatmap.fi.resx │ ├── Beatmap.fil.resx │ ├── Beatmap.fr.resx │ ├── Beatmap.he.resx │ ├── Beatmap.hr.resx │ ├── Beatmap.hu.resx │ ├── Beatmap.id.resx │ ├── Beatmap.it.resx │ ├── Beatmap.ja.resx │ ├── Beatmap.ko.resx │ ├── Beatmap.lt.resx │ ├── Beatmap.lv.resx │ ├── Beatmap.ms.resx │ ├── Beatmap.nl.resx │ ├── Beatmap.no.resx │ ├── Beatmap.pl.resx │ ├── Beatmap.pt.resx │ ├── Beatmap.pt_BR.resx │ ├── Beatmap.resx │ ├── Beatmap.ro.resx │ ├── Beatmap.ru.resx │ ├── Beatmap.si.resx │ ├── Beatmap.sk.resx │ ├── Beatmap.sl.resx │ ├── Beatmap.sr.resx │ ├── Beatmap.sv.resx │ ├── Beatmap.th.resx │ ├── Beatmap.tr.resx │ ├── Beatmap.uk.resx │ ├── Beatmap.vi.resx │ ├── Beatmap.zh-Hans.resx │ ├── Beatmap.zh-Hant.resx │ ├── Inputs.ar.resx │ ├── Inputs.be.resx │ ├── Inputs.bg.resx │ ├── Inputs.ca.resx │ ├── Inputs.cs.resx │ ├── Inputs.da.resx │ ├── Inputs.de.resx │ ├── Inputs.el.resx │ ├── Inputs.es.resx │ ├── Inputs.fa.resx │ ├── Inputs.fi.resx │ ├── Inputs.fil.resx │ ├── Inputs.fr.resx │ ├── Inputs.he.resx │ ├── Inputs.hr.resx │ ├── Inputs.hu.resx │ ├── Inputs.id.resx │ ├── Inputs.it.resx │ ├── Inputs.ja.resx │ ├── Inputs.ko.resx │ ├── Inputs.lt.resx │ ├── Inputs.lv.resx │ ├── Inputs.ms.resx │ ├── Inputs.nl.resx │ ├── Inputs.no.resx │ ├── Inputs.pl.resx │ ├── Inputs.pt.resx │ ├── Inputs.pt_BR.resx │ ├── Inputs.resx │ ├── Inputs.ro.resx │ ├── Inputs.ru.resx │ ├── Inputs.si.resx │ ├── Inputs.sk.resx │ ├── Inputs.sl.resx │ ├── Inputs.sr.resx │ ├── Inputs.sv.resx │ ├── Inputs.th.resx │ ├── Inputs.tr.resx │ ├── Inputs.uk.resx │ ├── Inputs.vi.resx │ ├── Inputs.zh-Hans.resx │ ├── Inputs.zh-Hant.resx │ ├── KiaiType.ar.resx │ ├── KiaiType.be.resx │ ├── KiaiType.bg.resx │ ├── KiaiType.ca.resx │ ├── KiaiType.cs.resx │ ├── KiaiType.da.resx │ ├── KiaiType.de.resx │ ├── KiaiType.el.resx │ ├── KiaiType.es.resx │ ├── KiaiType.fa.resx │ ├── KiaiType.fi.resx │ ├── KiaiType.fil.resx │ ├── KiaiType.fr.resx │ ├── KiaiType.he.resx │ ├── KiaiType.hr.resx │ ├── KiaiType.hu.resx │ ├── KiaiType.id.resx │ ├── KiaiType.it.resx │ ├── KiaiType.ja.resx │ ├── KiaiType.ko.resx │ ├── KiaiType.lt.resx │ ├── KiaiType.lv.resx │ ├── KiaiType.ms.resx │ ├── KiaiType.nl.resx │ ├── KiaiType.no.resx │ ├── KiaiType.pl.resx │ ├── KiaiType.pt.resx │ ├── KiaiType.pt_BR.resx │ ├── KiaiType.resx │ ├── KiaiType.ro.resx │ ├── KiaiType.ru.resx │ ├── KiaiType.si.resx │ ├── KiaiType.sk.resx │ ├── KiaiType.sl.resx │ ├── KiaiType.sr.resx │ ├── KiaiType.sv.resx │ ├── KiaiType.th.resx │ ├── KiaiType.tr.resx │ ├── KiaiType.uk.resx │ ├── KiaiType.vi.resx │ ├── KiaiType.zh-Hans.resx │ ├── KiaiType.zh-Hant.resx │ ├── Mods.ar.resx │ ├── Mods.be.resx │ ├── Mods.bg.resx │ ├── Mods.ca.resx │ ├── Mods.cs.resx │ ├── Mods.da.resx │ ├── Mods.de.resx │ ├── Mods.el.resx │ ├── Mods.es.resx │ ├── Mods.fa.resx │ ├── Mods.fi.resx │ ├── Mods.fil.resx │ ├── Mods.fr.resx │ ├── Mods.he.resx │ ├── Mods.hr.resx │ ├── Mods.hu.resx │ ├── Mods.id.resx │ ├── Mods.it.resx │ ├── Mods.ja.resx │ ├── Mods.ko.resx │ ├── Mods.lt.resx │ ├── Mods.lv.resx │ ├── Mods.ms.resx │ ├── Mods.nl.resx │ ├── Mods.no.resx │ ├── Mods.pl.resx │ ├── Mods.pt.resx │ ├── Mods.pt_BR.resx │ ├── Mods.resx │ ├── Mods.ro.resx │ ├── Mods.ru.resx │ ├── Mods.si.resx │ ├── Mods.sk.resx │ ├── Mods.sl.resx │ ├── Mods.sr.resx │ ├── Mods.sv.resx │ ├── Mods.th.resx │ ├── Mods.tr.resx │ ├── Mods.uk.resx │ ├── Mods.vi.resx │ ├── Mods.zh-Hans.resx │ ├── Mods.zh-Hant.resx │ ├── Settings.ar.resx │ ├── Settings.be.resx │ ├── Settings.bg.resx │ ├── Settings.ca.resx │ ├── Settings.cs.resx │ ├── Settings.da.resx │ ├── Settings.de.resx │ ├── Settings.el.resx │ ├── Settings.es.resx │ ├── Settings.fa.resx │ ├── Settings.fi.resx │ ├── Settings.fil.resx │ ├── Settings.fr.resx │ ├── Settings.he.resx │ ├── Settings.hr.resx │ ├── Settings.hu.resx │ ├── Settings.id.resx │ ├── Settings.it.resx │ ├── Settings.ja.resx │ ├── Settings.ko.resx │ ├── Settings.lt.resx │ ├── Settings.lv.resx │ ├── Settings.ms.resx │ ├── Settings.nl.resx │ ├── Settings.no.resx │ ├── Settings.pl.resx │ ├── Settings.pt.resx │ ├── Settings.pt_BR.resx │ ├── Settings.resx │ ├── Settings.ro.resx │ ├── Settings.ru.resx │ ├── Settings.si.resx │ ├── Settings.sk.resx │ ├── Settings.sl.resx │ ├── Settings.sr.resx │ ├── Settings.sv.resx │ ├── Settings.th.resx │ ├── Settings.tr.resx │ ├── Settings.uk.resx │ ├── Settings.vi.resx │ ├── Settings.zh-Hans.resx │ ├── Settings.zh-Hant.resx │ ├── UI.ar.resx │ ├── UI.be.resx │ ├── UI.bg.resx │ ├── UI.ca.resx │ ├── UI.cs.resx │ ├── UI.da.resx │ ├── UI.de.resx │ ├── UI.el.resx │ ├── UI.es.resx │ ├── UI.fa.resx │ ├── UI.fi.resx │ ├── UI.fil.resx │ ├── UI.fr.resx │ ├── UI.he.resx │ ├── UI.hr.resx │ ├── UI.hu.resx │ ├── UI.id.resx │ ├── UI.it.resx │ ├── UI.ja.resx │ ├── UI.ko.resx │ ├── UI.lt.resx │ ├── UI.lv.resx │ ├── UI.ms.resx │ ├── UI.nl.resx │ ├── UI.no.resx │ ├── UI.pl.resx │ ├── UI.pt.resx │ ├── UI.pt_BR.resx │ ├── UI.resx │ ├── UI.ro.resx │ ├── UI.ru.resx │ ├── UI.si.resx │ ├── UI.sk.resx │ ├── UI.sl.resx │ ├── UI.sr.resx │ ├── UI.sv.resx │ ├── UI.th.resx │ ├── UI.tr.resx │ ├── UI.uk.resx │ ├── UI.vi.resx │ ├── UI.zh-Hans.resx │ └── UI.zh-Hant.resx └── UiStrings.cs ├── Mods ├── TauModAutopilot.cs ├── TauModAutoplay.cs ├── TauModCinema.cs ├── TauModDaycore.cs ├── TauModDifficultyAdjust.cs ├── TauModDoubleTime.cs ├── TauModDual.cs ├── TauModEasy.cs ├── TauModFadeIn.cs ├── TauModFadeOut.cs ├── TauModFlashlight.cs ├── TauModHalfTime.cs ├── TauModHardRock.cs ├── TauModHidden.cs ├── TauModImpossibleSliders.cs ├── TauModInverse.cs ├── TauModLenience.cs ├── TauModLite.cs ├── TauModNightcore.cs ├── TauModNoFail.cs ├── TauModNoScope.cs ├── TauModPerfect.cs ├── TauModRelax.cs ├── TauModRoundabout.cs ├── TauModShowoffAutoplay.cs ├── TauModStrict.cs ├── TauModSuddenDeath.cs └── TauModTraceable.cs ├── Objects ├── AngledTauHitObject.cs ├── Beat.cs ├── Drawables │ ├── DrawableAngledTauHitObject.cs │ ├── DrawableBeat.cs │ ├── DrawableHardBeat.cs │ ├── DrawableSlider.Calculations.cs │ ├── DrawableSlider.Graphics.SliderPathDrawNode.cs │ ├── DrawableSlider.Graphics.cs │ ├── DrawableSlider.cs │ ├── DrawableSliderHardBeat.cs │ ├── DrawableSliderHead.cs │ ├── DrawableSliderRepeat.cs │ ├── DrawableSliderTick.cs │ ├── DrawableStrictHardBeat.cs │ ├── DrawableTauHitObject.cs │ ├── DrawableTauJudgement.cs │ ├── ICanApplyResult.cs │ └── Pieces │ │ ├── BeatPiece.cs │ │ ├── HardBeatPiece.cs │ │ ├── SkinnableLighting.cs │ │ └── StrictHardBeatPiece.cs ├── HardBeat.cs ├── IHasAngle.cs ├── IHasOffsetAngle.cs ├── PolarSliderPath.cs ├── Slider.cs ├── SliderHardBeat.cs ├── SliderHeadBeat.cs ├── SliderRepeat.cs ├── SliderTick.cs ├── StrictHardBeat.cs └── TauHitObject.cs ├── Replays ├── ShowoffAutoGenerator.cs ├── TauAutoGenerator.cs ├── TauAutoGeneratorBase.cs ├── TauFramedReplayInputHandler.cs └── TauReplayFrame.cs ├── Resources ├── Fonts │ ├── tauFont.fnt │ └── tauFont_0.png └── Shaders │ ├── sh_PlayfieldMask.fs │ ├── sh_Slider.fs │ ├── sh_SliderPositionAndColour.vs │ ├── sh_TriangularFlashlight.fs │ ├── sh_VisualizerFade.fs │ └── sh_VisualizerPositionAndColour.vs ├── Scoring ├── TauHitWindow.cs └── TauScoreProcessor.cs ├── Statistics └── PaddleDistributionGraph.cs ├── TauIcons.cs ├── TauInputManager.cs ├── TauRuleset.cs ├── UI ├── Cursor │ ├── AbsoluteCursor.cs │ ├── CursorPiece.cs │ ├── HandlePiece.cs │ └── Paddle.cs ├── Effects │ ├── ClassicKiaiEffect.cs │ ├── KiaiEffect.cs │ ├── KiaiEffectContainer.cs │ ├── PlayfieldVisualizer.cs │ └── TurbulenceKiaiEffect.cs ├── EffectsContainer.cs ├── PlayfieldPiece.cs ├── TauCachedProperties.cs ├── TauCursor.cs ├── TauDrawableRuleset.cs ├── TauPlayfield.cs ├── TauPlayfieldAdjustmentContainer.cs ├── TauReplayRecorder.cs ├── TauResumeOverlay.cs └── TauSettingsSubsection.cs └── osu.Game.Rulesets.Tau.csproj /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/experimental-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.github/workflows/experimental-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/crowdin.yml -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Conversion/TauConversionTestScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Conversion/TauConversionTestScene.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneBeatConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneBeatConversion.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneHardBeatConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneHardBeatConversion.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneSliderConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneSliderConversion.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneSpinnerConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Conversion/TestSceneSpinnerConversion.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneAutopilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneAutopilot.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneAutoplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneAutoplay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneCinema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneCinema.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneDoubleTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneDoubleTime.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneDual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneDual.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneEasy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneEasy.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneFadeIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneFadeIn.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneFadeOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneFadeOut.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneFlashlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneFlashlight.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneHalfTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneHalfTime.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneHardRock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneHardRock.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneInverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneInverse.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneNightcore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneNightcore.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestScenePerfect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestScenePerfect.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneRelax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneRelax.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneRoundabout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneRoundabout.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneShowoff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneShowoff.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneSuddenDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneSuddenDeath.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Mods/TestSceneTraceable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Mods/TestSceneTraceable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/NonVisual/PolarSliderPathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/NonVisual/PolarSliderPathTests.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Objects/TestSceneAutoplayBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Objects/TestSceneAutoplayBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Objects/TestSceneAutoplaySlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Objects/TestSceneAutoplaySlider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Objects/TestSceneBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Objects/TestSceneBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Objects/TestSceneHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Objects/TestSceneHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Objects/TestSceneSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Objects/TestSceneSlider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Objects/TestSceneSliderHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Objects/TestSceneSliderHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/Objects/TestSceneStrictHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/Objects/TestSceneStrictHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TauModTestScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TauModTestScene.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TauSkinnableTestScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TauSkinnableTestScene.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TauTestScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TauTestScene.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneClassicKiai.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneClassicKiai.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneDrawableJudgement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneDrawableJudgement.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneKiaiEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneKiaiEffects.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneOsuGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneOsuGame.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneOsuPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneOsuPlayer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestScenePaddleDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestScenePaddleDistribution.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneResumeOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneResumeOverlay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneTauCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneTauCursor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneTauPlayfield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneTauPlayfield.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneTurbulenceKiai.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneTurbulenceKiai.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/TestSceneVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/TestSceneVisualizer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/VisualTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/VisualTestRunner.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.Tests/osu.Game.Rulesets.Tau.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.Tests/osu.Game.Rulesets.Tau.Tests.csproj -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.sln -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau.sln.DotSettings -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Allocation/MemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Allocation/MemoryPool.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Beatmaps/TauBeatmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Beatmaps/TauBeatmap.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Beatmaps/TauBeatmapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Beatmaps/TauBeatmapConverter.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Configuration/KiaiType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Configuration/KiaiType.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Configuration/TauRulesetConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Configuration/TauRulesetConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Evaluators/AimEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Evaluators/AimEvaluator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Evaluators/ComplexityEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Evaluators/ComplexityEvaluator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Evaluators/RhythmEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Evaluators/RhythmEvaluator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Evaluators/SpeedEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Evaluators/SpeedEvaluator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Preprocessing/TauAngledDifficultyHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Preprocessing/TauAngledDifficultyHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Preprocessing/TauDifficultyHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Preprocessing/TauDifficultyHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Skills/Aim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Skills/Aim.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Skills/Complexity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Skills/Complexity.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Skills/Speed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Skills/Speed.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/Skills/TauStrainSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/Skills/TauStrainSkill.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/TauDifficultyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/TauDifficultyAttributes.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/TauDifficultyCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/TauDifficultyCalculator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/TauPerformanceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/TauPerformanceAttribute.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Difficulty/TauPerformanceCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Difficulty/TauPerformanceCalculator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Extensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Judgements/TauJudgement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Judgements/TauJudgement.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Judgements/TauJudgementResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Judgements/TauJudgementResult.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Judgements/TauTickJudgement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Judgements/TauTickJudgement.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/BeatmapStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/BeatmapStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/InputStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/InputStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/KiaiTypeStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/KiaiTypeStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/ModStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/ModStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/SettingStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/SettingStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ar.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.be.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.be.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.bg.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ca.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.cs.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.da.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.de.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.el.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.es.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fa.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fil.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.fr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.he.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.hr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.hu.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.id.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.it.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ja.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ko.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.lt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.lv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ms.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.nl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.no.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.pl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.pt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.pt_BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.pt_BR.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ro.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.ru.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.si.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.si.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.sv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.th.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.tr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.uk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.vi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.zh-Hans.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Beatmap.zh-Hant.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ar.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.be.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.be.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.bg.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ca.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.cs.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.da.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.de.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.el.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.es.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fa.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fil.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.fr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.he.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.hr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.hu.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.id.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.it.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ja.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ko.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.lt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.lv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ms.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.nl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.no.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.pl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.pt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.pt_BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.pt_BR.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ro.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.ru.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.si.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.si.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.sv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.th.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.tr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.uk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.vi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.zh-Hans.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Inputs.zh-Hant.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ar.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.be.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.be.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.bg.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ca.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.cs.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.da.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.de.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.el.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.es.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fa.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fil.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.fr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.he.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.hr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.hu.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.id.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.it.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ja.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ko.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.lt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.lv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ms.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.nl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.no.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.pl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.pt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.pt_BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.pt_BR.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ro.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.ru.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.si.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.si.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.sv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.th.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.tr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.uk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.vi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.zh-Hans.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/KiaiType.zh-Hant.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ar.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.be.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.be.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.bg.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ca.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.cs.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.da.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.de.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.el.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.es.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fa.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fil.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.fr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.he.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.hr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.hu.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.id.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.it.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ja.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ko.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.lt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.lv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ms.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.nl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.no.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.pl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.pt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.pt_BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.pt_BR.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ro.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.ru.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.si.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.si.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.sv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.th.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.tr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.uk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.vi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.zh-Hans.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Mods.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Mods.zh-Hant.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ar.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.be.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.be.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.bg.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ca.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.cs.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.da.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.de.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.el.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.es.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fa.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fil.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.fr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.he.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.hr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.hu.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.id.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.it.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ja.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ko.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.lt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.lv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ms.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.nl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.no.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.pl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.pt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.pt_BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.pt_BR.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ro.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.ru.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.si.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.si.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.sv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.th.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.tr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.uk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.vi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.zh-Hans.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/Settings.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/Settings.zh-Hant.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.ar.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.be.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.be.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.bg.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.ca.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.cs.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.da.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.de.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.el.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.es.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.fa.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.fi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.fil.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.fr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.he.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.hr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.hu.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.id.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.it.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.ja.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.ko.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.lt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.lv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.ms.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.nl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.no.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.pl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.pt.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.pt_BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.pt_BR.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.ro.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.ru.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.si.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.si.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.sk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.sl.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.sr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.sv.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.th.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.tr.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.uk.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.vi.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.zh-Hans.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/Translations/UI.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/Translations/UI.zh-Hant.resx -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Localisation/UiStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Localisation/UiStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModAutopilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModAutopilot.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModAutoplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModAutoplay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModCinema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModCinema.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModDaycore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModDaycore.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModDifficultyAdjust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModDifficultyAdjust.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModDoubleTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModDoubleTime.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModDual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModDual.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModEasy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModEasy.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModFadeIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModFadeIn.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModFadeOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModFadeOut.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModFlashlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModFlashlight.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModHalfTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModHalfTime.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModHardRock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModHardRock.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModHidden.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModHidden.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModImpossibleSliders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModImpossibleSliders.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModInverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModInverse.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModLenience.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModLenience.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModLite.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModNightcore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModNightcore.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModNoFail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModNoFail.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModNoScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModNoScope.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModPerfect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModPerfect.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModRelax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModRelax.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModRoundabout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModRoundabout.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModShowoffAutoplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModShowoffAutoplay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModStrict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModStrict.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModSuddenDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModSuddenDeath.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Mods/TauModTraceable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Mods/TauModTraceable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/AngledTauHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/AngledTauHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Beat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Beat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableAngledTauHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableAngledTauHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.Calculations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.Calculations.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.Graphics.SliderPathDrawNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.Graphics.SliderPathDrawNode.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.Graphics.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSlider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderHead.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderRepeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderRepeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableSliderTick.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableStrictHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableStrictHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableTauHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableTauHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/DrawableTauJudgement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/DrawableTauJudgement.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/ICanApplyResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/ICanApplyResult.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/BeatPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/BeatPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/HardBeatPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/HardBeatPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/SkinnableLighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/SkinnableLighting.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/StrictHardBeatPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Drawables/Pieces/StrictHardBeatPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/HardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/HardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/IHasAngle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/IHasAngle.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/IHasOffsetAngle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/IHasOffsetAngle.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/PolarSliderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/PolarSliderPath.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/Slider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/SliderHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/SliderHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/SliderHeadBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/SliderHeadBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/SliderRepeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/SliderRepeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/SliderTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/SliderTick.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/StrictHardBeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/StrictHardBeat.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Objects/TauHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Objects/TauHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Replays/ShowoffAutoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Replays/ShowoffAutoGenerator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Replays/TauAutoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Replays/TauAutoGenerator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Replays/TauAutoGeneratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Replays/TauAutoGeneratorBase.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Replays/TauFramedReplayInputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Replays/TauFramedReplayInputHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Replays/TauReplayFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Replays/TauReplayFrame.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Fonts/tauFont.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Fonts/tauFont.fnt -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Fonts/tauFont_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Fonts/tauFont_0.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Shaders/sh_PlayfieldMask.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Shaders/sh_PlayfieldMask.fs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Shaders/sh_Slider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Shaders/sh_Slider.fs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Shaders/sh_SliderPositionAndColour.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Shaders/sh_SliderPositionAndColour.vs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Shaders/sh_TriangularFlashlight.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Shaders/sh_TriangularFlashlight.fs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Shaders/sh_VisualizerFade.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Shaders/sh_VisualizerFade.fs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Resources/Shaders/sh_VisualizerPositionAndColour.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Resources/Shaders/sh_VisualizerPositionAndColour.vs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Scoring/TauHitWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Scoring/TauHitWindow.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Scoring/TauScoreProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Scoring/TauScoreProcessor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/Statistics/PaddleDistributionGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/Statistics/PaddleDistributionGraph.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/TauIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/TauIcons.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/TauInputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/TauInputManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/TauRuleset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/TauRuleset.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Cursor/AbsoluteCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Cursor/AbsoluteCursor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Cursor/CursorPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Cursor/CursorPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Cursor/HandlePiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Cursor/HandlePiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Cursor/Paddle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Cursor/Paddle.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Effects/ClassicKiaiEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Effects/ClassicKiaiEffect.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Effects/KiaiEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Effects/KiaiEffect.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Effects/KiaiEffectContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Effects/KiaiEffectContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Effects/PlayfieldVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Effects/PlayfieldVisualizer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/Effects/TurbulenceKiaiEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/Effects/TurbulenceKiaiEffect.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/EffectsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/EffectsContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/PlayfieldPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/PlayfieldPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauCachedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauCachedProperties.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauCursor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauDrawableRuleset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauDrawableRuleset.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauPlayfield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauPlayfield.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauPlayfieldAdjustmentContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauPlayfieldAdjustmentContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauReplayRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauReplayRecorder.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauResumeOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauResumeOverlay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/UI/TauSettingsSubsection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/UI/TauSettingsSubsection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Tau/osu.Game.Rulesets.Tau.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taulazer/tau/HEAD/osu.Game.Rulesets.Tau/osu.Game.Rulesets.Tau.csproj --------------------------------------------------------------------------------