1
0
Fork 0

Remove unused class

This commit is contained in:
ivan tkachenko 2025-08-22 15:10:51 +03:00
parent d4d3e15de3
commit 70e45d5ba2
1 changed files with 0 additions and 15 deletions

View File

@ -808,21 +808,6 @@ namespace MuzikaGromche
}
}
public struct SelectableTrackData()
{
// Name of the track, as shown in config entry UI; also used for default file names.
public required string Name { get; init; }
// Language of the track's lyrics.
public required Language Language { get; init; }
// Whether this track has NSFW/explicit lyrics.
public bool IsExplicit { get; init; } = false;
// How often this track should be chosen, relative to the sum of weights of all tracks.
public ConfigEntry<int> Weight { get; internal set; } = null!;
}
// An instance of a track which appears as a configuration entry and
// can be selected using weighted random from a list of selectable tracks.
public interface ISelectableTrack