1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-24 18:03:01 +08:00
osu-lazer/osu.Game.Rulesets.Taiko/Skinning/Argon/ArgonSwell.cs
Nathan Du 4fd8a4dc5a Merge taiko swell components
Per <https://github.com/ppy/osu/pull/21601/files#r1064167756>, taking a
variation of the "Make all swell main pieces implement
ISkinnableSwellPart" path. Should clean the interface up enough for
further refactors.
2025-01-31 16:55:39 +08:00

21 lines
578 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.Graphics;
using osu.Game.Rulesets.Taiko.Skinning.Default;
namespace osu.Game.Rulesets.Taiko.Skinning.Argon
{
public partial class ArgonSwell : DefaultSwell
{
protected override Drawable CreateCentreCircle()
{
return new ArgonSwellCirclePiece()
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
};
}
}
}