mirror of
https://github.com/ppy/osu.git
synced 2025-02-24 11:45:17 +08:00
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.
21 lines
578 B
C#
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,
|
|
};
|
|
}
|
|
}
|
|
}
|