MTOfflinePackProgress

@Serializable
data class MTOfflinePackProgress(val totalResources: Int, val downloadedResources: Int, val totalTileResources: Int, val downloadSpeed: Double = 0.0, val estimatedTimeRemaining: Double? = null)

Represents the download progress of an offline pack.

Constructors

constructor(totalResources: Int, downloadedResources: Int, totalTileResources: Int, downloadSpeed: Double = 0.0, estimatedTimeRemaining: Double? = null)

Properties

Number of resources that have been successfully downloaded.

The download speed in resources per second.

The estimated time remaining in seconds to complete the download.

The completion percentage (0.0 to 1.0).

Total number of resources required for the pack.

Total number of tile resources required for the pack.