Add a list for play history.

This commit is contained in:
Huo Yaoyuan 2016-11-07 20:57:33 +08:00
parent c272041f37
commit 644e337cf6

View File

@ -29,8 +29,12 @@ namespace osu.Game.Overlays
private SpriteText title, artist;
private Texture fallbackTexture;
private TrackManager trackManager;
private List<BeatmapSetInfo> playList;
private List<BeatmapInfo> playHistory;
private int playListIndex;
private int playHistoryIndex;
private TrackManager trackManager;
private BeatmapDatabase database;
private Bindable<WorkingBeatmap> beatmapSource;
private WorkingBeatmap current;