1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:47:18 +08:00
osu-lazer/osu.Game/Graphics/UserInterfaceV2/LabelledSwitchButton.cs

16 lines
464 B
C#
Raw Normal View History

2023-06-23 01:37:25 +09:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2019-09-25 17:42:35 +09:00
// See the LICENCE file in the repository root for full licence text.
2019-09-25 17:53:08 +09:00
namespace osu.Game.Graphics.UserInterfaceV2
2019-09-25 17:42:35 +09:00
{
2022-11-24 14:32:20 +09:00
public partial class LabelledSwitchButton : LabelledComponent<SwitchButton, bool>
2019-09-25 17:42:35 +09:00
{
public LabelledSwitchButton()
: base(true)
{
}
protected override SwitchButton CreateComponent() => new SwitchButton();
}
}