2017-02-07 04:59:30 +00: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 09:37:11 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
2017-05-04 14:07:24 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-01-31 09:37:11 +00:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
|
2017-05-15 01:55:29 +00:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-01-31 09:37:11 +00:00
|
|
|
|
{
|
2017-05-15 01:55:29 +00:00
|
|
|
|
internal class SettingsLabel : SettingsItem<string>
|
2017-01-31 09:37:11 +00:00
|
|
|
|
{
|
2017-05-04 14:07:24 +00:00
|
|
|
|
protected override Drawable CreateControl() => null;
|
|
|
|
|
|
2017-01-31 09:37:11 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colour)
|
|
|
|
|
{
|
|
|
|
|
Colour = colour.Gray6;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|