mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-01-06 01:20:29 +05:30
13 lines
258 B
Kotlin
13 lines
258 B
Kotlin
package com.github.libretube
|
|
|
|
/**
|
|
* Global variables can be stored here
|
|
*/
|
|
object Globals {
|
|
// for downloads
|
|
var IS_DOWNLOAD_RUNNING = false
|
|
|
|
// history of played videos in the current lifecycle
|
|
val playingQueue = mutableListOf<String>()
|
|
}
|