// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable namespace osu.Game.Rulesets.Taiko.Objects { /// /// The type of a . /// public enum HitType { /// /// A that can be hit by the centre portion of the drum. /// Centre, /// /// A that can be hit by the rim portion of the drum. /// Rim } }