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

25 lines
693 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 class LabelledComponent<T, U> : LabelledDrawable<T>, IHasCurrentValue<U>
where T : Drawable, IHasCurrentValue<U>
2019-09-20 17:35:15 +08:00
{
protected LabelledComponent(bool padded)
: base(padded)
2019-09-20 17:35:15 +08:00
{
}
public Bindable<U> Current
2019-09-20 17:35:15 +08:00
{
get => Component.Current;
set => Component.Current = value;
2019-09-20 17:35:15 +08:00
}
}
}