osu/osu.Game/Graphics/UserInterfaceV2/LabelledSwitchButton.cs

16 lines
453 B
C#
Raw Normal View History

2019-09-25 08:42:35 +00: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.
2019-09-25 08:53:08 +00:00
namespace osu.Game.Graphics.UserInterfaceV2
2019-09-25 08:42:35 +00:00
{
public class LabelledSwitchButton : LabelledComponent<SwitchButton, bool>
2019-09-25 08:42:35 +00:00
{
public LabelledSwitchButton()
: base(true)
{
}
protected override SwitchButton CreateComponent() => new SwitchButton();
}
}