Make HitObject not store the judgement

This commit is contained in:
smoogipoo
2018-08-06 11:50:18 +09:00
parent 0d6a8a2bf5
commit 3a7488767c
20 changed files with 25 additions and 34 deletions

View File

@ -8,6 +8,6 @@ namespace osu.Game.Rulesets.Catch.Objects
{
public class Droplet : CatchHitObject
{
protected override Judgement CreateJudgement() => new CatchDropletJudgement();
public override Judgement CreateJudgement() => new CatchDropletJudgement();
}
}