2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-05-30 16:02:04 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
2018-01-14 03:25:09 +08:00
|
|
|
namespace osu.Game.Screens.Play.PlayerSettings
|
2017-05-30 16:02:04 +08:00
|
|
|
{
|
2018-01-14 03:25:09 +08:00
|
|
|
public class PlayerCheckbox : OsuCheckbox
|
2017-05-30 16:02:04 +08:00
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
{
|
|
|
|
Nub.AccentColour = colours.Yellow;
|
|
|
|
Nub.GlowingAccentColour = colours.YellowLighter;
|
|
|
|
Nub.GlowColour = colours.YellowDarker;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|