2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Scoring
|
|
|
|
|
{
|
2019-12-11 16:25:06 +08:00
|
|
|
|
internal class ManiaScoreProcessor : ScoreProcessor
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-07-28 16:58:58 +08:00
|
|
|
|
protected override double DefaultAccuracyPortion => 0.95;
|
2020-07-16 13:10:52 +08:00
|
|
|
|
|
2020-07-28 16:58:58 +08:00
|
|
|
|
protected override double DefaultComboPortion => 0.05;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|