SongCoreCustomLevelCollection.cs 546 B

123456789101112131415
  1. namespace SongCore.OverrideClasses
  2. {
  3. public class SongCoreCustomLevelCollection : CustomBeatmapLevelCollection
  4. {
  5. // public readonly List<CustomPreviewBeatmapLevel> _levels = new List<CustomPreviewBeatmapLevel>();
  6. public SongCoreCustomLevelCollection(CustomPreviewBeatmapLevel[] customPreviewBeatmapLevels) : base(customPreviewBeatmapLevels)
  7. {
  8. }
  9. public void UpdatePreviewLevels(CustomPreviewBeatmapLevel[] levels)
  10. {
  11. _customPreviewBeatmapLevels = levels;
  12. }
  13. }
  14. }