1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterfaceV2/LabelledComponent.cs

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

25 lines
748 B
C#
Raw Normal View History

2019-09-20 17:35:15 +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.Bindables;
2019-09-20 17:35:15 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
2019-09-20 17:35:15 +08:00
2019-09-24 18:00:26 +08:00
namespace osu.Game.Graphics.UserInterfaceV2
2019-09-20 17:35:15 +08:00
{
public abstract partial class LabelledComponent<TDrawable, TValue> : LabelledDrawable<TDrawable>, IHasCurrentValue<TValue>
where TDrawable : Drawable, IHasCurrentValue<TValue>
2019-09-20 17:35:15 +08:00
{
protected LabelledComponent(bool padded)
: base(padded)
2019-09-20 17:35:15 +08:00
{
}
public Bindable<TValue> Current
2019-09-20 17:35:15 +08:00
{
get => Component.Current;
set => Component.Current = value;
2019-09-20 17:35:15 +08:00
}
}
}