2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Scoring
|
2017-03-16 03:40:35 +00:00
|
|
|
|
{
|
2019-12-11 08:25:06 +00:00
|
|
|
|
public class CatchScoreProcessor : ScoreProcessor
|
2017-03-16 03:40:35 +00:00
|
|
|
|
{
|
2022-03-15 03:34:58 +00:00
|
|
|
|
public CatchScoreProcessor()
|
|
|
|
|
: base(new CatchRuleset())
|
2022-03-14 06:51:10 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-10 01:26:09 +00:00
|
|
|
|
protected override double ClassicScoreMultiplier => 28;
|
2017-03-16 03:40:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|