2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-01-31 17:37:11 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2017-05-04 22:07:24 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-01-31 17:37:11 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-01-31 17:37:11 +08:00
|
|
|
|
{
|
2017-11-21 10:49:42 +08:00
|
|
|
|
public class SettingsLabel : SettingsItem<string>
|
2017-01-31 17:37:11 +08:00
|
|
|
|
{
|
2017-05-04 22:07:24 +08:00
|
|
|
|
protected override Drawable CreateControl() => null;
|
|
|
|
|
|
2017-01-31 17:37:11 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colour)
|
|
|
|
|
{
|
|
|
|
|
Colour = colour.Gray6;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|