mirror of
https://github.com/osukey/osukey.git
synced 2025-05-03 20:57:28 +09:00
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using OpenTK.Graphics;
|
|
using osu.Game.Screens.Play;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.GameModes.Testing;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.GameModes.Testing;
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
namespace osu.Desktop.VisualTests
|
|
{
|
|
public class TestCaseSongProgress : TestCase
|
|
{
|
|
public override string Name => @"Song Progress";
|
|
|
|
public override string Description => @"With real data";
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
Add(new Box
|
|
{
|
|
ColourInfo = ColourInfo.GradientVertical(Color4.WhiteSmoke, Color4.Gray),
|
|
RelativeSizeAxes = Framework.Graphics.Axes.Both,
|
|
});
|
|
Add(new SongProgress
|
|
{
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
RelativeSizeAxes = Axes.X
|
|
});
|
|
}
|
|
}
|
|
}
|