GameLevelItem

struct GameLevelItem : Codable, Identifiable

A data structure that represents a game level item.

  • id

    A unique ID for this item.

    Declaration

    Swift

    let id: UUID
  • The name of the level.

    Declaration

    Swift

    let name: String
  • A description of the level.

    Declaration

    Swift

    let description: String
  • Whether the level is part of a DLC.

    Declaration

    Swift

    let isDownloadableContent: Bool