1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-18 08:52:54 +08:00
osu-lazer/osu.Game.Rulesets.Mania/Skinning/Argon/ArgonHoldNoteTailPiece.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
569 B
C#
Raw Normal View History

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
}
}
}