2017-03-16 03:40:35 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2017-03-16 03:40:35 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Scoring
|
2017-03-16 03:40:35 +00:00
|
|
|
|
{
|
2017-09-06 09:05:51 +00:00
|
|
|
|
internal class CatchScoreProcessor : ScoreProcessor<CatchBaseHit>
|
2017-03-16 03:40:35 +00:00
|
|
|
|
{
|
2017-03-16 04:13:45 +00:00
|
|
|
|
public CatchScoreProcessor()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 09:05:51 +00:00
|
|
|
|
public CatchScoreProcessor(RulesetContainer<CatchBaseHit> rulesetContainer)
|
2017-08-09 04:28:29 +00:00
|
|
|
|
: base(rulesetContainer)
|
2017-03-16 03:40:35 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|