mirror of
https://github.com/osukey/osukey.git
synced 2025-05-09 23:57:18 +09:00
Removed ununsed variables
This commit is contained in:
parent
cb8b3cb8fb
commit
8bee06943b
@ -39,9 +39,7 @@ namespace osu.Game.Overlays
|
|||||||
private Drawable currentBackground;
|
private Drawable currentBackground;
|
||||||
private DragBar progressBar;
|
private DragBar progressBar;
|
||||||
|
|
||||||
private IconButton prevButton;
|
|
||||||
private IconButton playButton;
|
private IconButton playButton;
|
||||||
private IconButton nextButton;
|
|
||||||
private IconButton playlistButton;
|
private IconButton playlistButton;
|
||||||
|
|
||||||
private SpriteText title, artist;
|
private SpriteText title, artist;
|
||||||
@ -155,7 +153,7 @@ namespace osu.Game.Overlays
|
|||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Children = new[]
|
Children = new[]
|
||||||
{
|
{
|
||||||
prevButton = new IconButton
|
new IconButton
|
||||||
{
|
{
|
||||||
Action = prev,
|
Action = prev,
|
||||||
Icon = FontAwesome.fa_step_backward,
|
Icon = FontAwesome.fa_step_backward,
|
||||||
@ -167,7 +165,7 @@ namespace osu.Game.Overlays
|
|||||||
Action = play,
|
Action = play,
|
||||||
Icon = FontAwesome.fa_play_circle_o,
|
Icon = FontAwesome.fa_play_circle_o,
|
||||||
},
|
},
|
||||||
nextButton = new IconButton
|
new IconButton
|
||||||
{
|
{
|
||||||
Action = next,
|
Action = next,
|
||||||
Icon = FontAwesome.fa_step_forward,
|
Icon = FontAwesome.fa_step_forward,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user