Add health drain to catch

This commit is contained in:
clayton
2018-06-09 17:39:17 -07:00
parent f486bcfee1
commit 808118e4d4
6 changed files with 78 additions and 1 deletions

View File

@ -20,5 +20,16 @@ namespace osu.Game.Rulesets.Catch.Judgements
return 10;
}
}
protected override float HealthIncreaseFor(HitResult result)
{
switch (result)
{
default:
return 0;
case HitResult.Perfect:
return 4;
}
}
}
}