A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using osuTK.Graphics;
5
6namespace osu.Framework.Testing.Drawables.Steps
7{
8 public class LabelStep : StepButton
9 {
10 protected override Color4 IdleColour => new Color4(77, 77, 77, 255);
11
12 protected override Color4 RunningColour => new Color4(128, 128, 128, 255);
13
14 public LabelStep()
15 {
16 Light.Hide();
17 Height = 30;
18 }
19 }
20}