mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 14:50:30 +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>()
|
|
}
|