don't expose HyperDashModifier directly

This commit is contained in:
ekrctb
2018-06-20 20:08:27 +09:00
parent 79c5596b27
commit 9194fd8dfe
2 changed files with 26 additions and 35 deletions

View File

@ -55,7 +55,7 @@ namespace osu.Game.Rulesets.Catch.Tests
{
}
public void ToggleHyperDash(bool status) => MovableCatcher.HyperDashModifier = status ? 2 : 1;
public void ToggleHyperDash(bool status) => MovableCatcher.SetHyperdashState(status ? 2 : 1);
}
}
}