1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game/Screens/Play/SongProgressBar.cs

16 lines
319 B
C#
Raw Normal View History

using System;
using osu.Game.Overlays;
namespace osu.Game.Screens.Play
{
public class SongProgressBar : DragBar
{
public static readonly int BAR_HEIGHT = 5;
public SongProgressBar()
{
Colour = SongProgress.FILL_COLOUR;
Height = BAR_HEIGHT;
}
}
}