namespace SongCore.OverrideClasses { public class SongCoreCustomLevelCollection : CustomBeatmapLevelCollection { // public readonly List _levels = new List(); public SongCoreCustomLevelCollection(CustomPreviewBeatmapLevel[] customPreviewBeatmapLevels) : base(customPreviewBeatmapLevels) { } public void UpdatePreviewLevels(CustomPreviewBeatmapLevel[] levels) { _customPreviewBeatmapLevels = levels; } } }