2022-10-06 15:54:47 +08:00
|
|
|
// 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.Graphics.Containers;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Skinning.Argon
|
|
|
|
{
|
|
|
|
internal partial class ArgonHoldNoteTailPiece : CompositeDrawable
|
|
|
|
{
|
|
|
|
public ArgonHoldNoteTailPiece()
|
|
|
|
{
|
2023-01-31 01:14:29 +08:00
|
|
|
// holds end at the middle of the tail,
|
|
|
|
// so we do * 2 pull up the hold body to be the height of a note
|
2023-01-23 15:50:50 +08:00
|
|
|
Height = ArgonNotePiece.NOTE_HEIGHT * 2;
|
2022-10-06 15:54:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|