diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index 6538c9a..f269052 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -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 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