mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 23:37:26 +08:00
24 lines
601 B
C#
24 lines
601 B
C#
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||
|
|
||
|
using osu.Game.Rulesets.Objects;
|
||
|
using osu.Game.Rulesets.Scoring;
|
||
|
|
||
|
namespace osu.Game.Rulesets.Catch.Objects
|
||
|
{
|
||
|
public class CatchHitWindows : HitWindows
|
||
|
{
|
||
|
public override bool IsHitResultAllowed(HitResult result)
|
||
|
{
|
||
|
switch (result)
|
||
|
{
|
||
|
case HitResult.Perfect:
|
||
|
case HitResult.Miss:
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|