LibreTube/app/src/main/java/com/github/libretube/Globals.kt
2022-08-15 09:41:30 +02:00

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>()
}