mirror of
https://github.com/ppy/osu.git
synced 2024-12-19 20:33:05 +08:00
17 lines
588 B
C#
17 lines
588 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.Bindables;
|
||
|
using osu.Game.Skinning;
|
||
|
using osuTK.Graphics;
|
||
|
|
||
|
namespace osu.Game.Rulesets.Catch.Skinning
|
||
|
{
|
||
|
internal static class CatchSkinExtensions
|
||
|
{
|
||
|
public static IBindable<Color4> GetHyperDashFruitColour(this ISkin skin)
|
||
|
=> skin.GetConfig<CatchSkinColour, Color4>(CatchSkinColour.HyperDashFruit) ??
|
||
|
skin.GetConfig<CatchSkinColour, Color4>(CatchSkinColour.HyperDash);
|
||
|
}
|
||
|
}
|