mirror of
https://github.com/osukey/osukey.git
synced 2025-08-01 21:58:46 +09:00
Refactoring to SongProgress in osu.Game.Screens.Play, moving out progress bar into it's own class
This commit is contained in:
15
osu.Game/Screens/Play/SongProgressBar.cs
Normal file
15
osu.Game/Screens/Play/SongProgressBar.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user