SongType

public enum SongType : Int, CaseIterable, Codable

List of available song types.

  • Tag: SongType

Cases

  • Indicates that the song is of the opening type.

    Declaration

    Swift

    case opening = 0
  • Indicates that the song is of the ending type.

    Declaration

    Swift

    case ending = 1
  • Indicates that the song is of the background type.

    Declaration

    Swift

    case background = 2

Functions