1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 19:27:24 +08:00
osu-lazer/osu.Game/Graphics/UserInterfaceV2/LabelledSwitchButton.cs

16 lines
447 B
C#
Raw Normal View History

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