mirror of
https://github.com/ppy/osu.git
synced 2024-11-09 02:37:57 +08: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
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|