mirror of
https://github.com/ppy/osu
synced 2025-02-13 08:37:48 +00:00
27 lines
655 B
C#
27 lines
655 B
C#
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.GameModes.Testing;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Desktop.VisualTests
|
|
{
|
|
public class TestCaseSongProgressBar : TestCase
|
|
{
|
|
public override string Name => @"SongProgressBar";
|
|
|
|
public override string Description => @"Tests the song progress bar";
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
Add(new SongProgressBar
|
|
{
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
RelativeSizeAxes = Axes.X
|
|
});
|
|
}
|
|
}
|
|
}
|