Merge remote-tracking branch 'origin/master' into labelled-switch-button

This commit is contained in:
smoogipoo
2019-09-25 17:51:12 +09:00
37 changed files with 444 additions and 298 deletions

View File

@ -0,0 +1,17 @@
// 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.Game.Graphics.UserInterface;
namespace osu.Game.Screens.Edit.Setup.Components.LabelledComponents
{
public class LabelledSwitchButton : LabelledComponent<SwitchButton>
{
public LabelledSwitchButton()
: base(true)
{
}
protected override SwitchButton CreateComponent() => new SwitchButton();
}
}