mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:47:29 +08:00
22 lines
619 B
C#
22 lines
619 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Objects
|
|
{
|
|
public class Hit : TaikoHitObject
|
|
{
|
|
public readonly Bindable<HitType> TypeBindable = new Bindable<HitType>();
|
|
|
|
/// <summary>
|
|
/// The <see cref="HitType"/> that actuates this <see cref="Hit"/>.
|
|
/// </summary>
|
|
public HitType Type
|
|
{
|
|
get => TypeBindable.Value;
|
|
set => TypeBindable.Value = value;
|
|
}
|
|
}
|
|
}
|