2017-03-17 13:01:32 +08: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 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-03-17 13:01:32 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects
|
2017-03-17 13:01:32 +08:00
|
|
|
|
{
|
2017-03-25 19:57:49 +08:00
|
|
|
|
public class Swell : TaikoHitObject, IHasEndTime
|
2017-03-17 13:01:32 +08:00
|
|
|
|
{
|
2017-04-05 12:52:53 +08:00
|
|
|
|
public double EndTime => StartTime + Duration;
|
2017-03-17 13:01:32 +08:00
|
|
|
|
|
2017-04-05 12:52:53 +08:00
|
|
|
|
public double Duration { get; set; }
|
2017-03-17 13:01:32 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-03-25 19:57:49 +08:00
|
|
|
|
/// The number of hits required to complete the swell successfully.
|
2017-03-17 13:01:32 +08:00
|
|
|
|
/// </summary>
|
2017-04-03 14:02:21 +08:00
|
|
|
|
public int RequiredHits = 10;
|
2017-03-17 13:01:32 +08:00
|
|
|
|
}
|
|
|
|
|
}
|