LibreTube/app/src/main/java/com/github/libretube/Globals.kt

13 lines
258 B
Kotlin
Raw Normal View History

2022-07-12 20:57:56 +05:30
package com.github.libretube
2022-07-16 01:07:44 +05:30
/**
* Global variables can be stored here
*/
2022-07-12 20:57:56 +05:30
object Globals {
2022-07-18 22:59:56 +05:30
// for downloads
var IS_DOWNLOAD_RUNNING = false
2022-08-06 22:27:07 +05:30
2022-08-10 19:19:31 +05:30
// history of played videos in the current lifecycle
2022-08-10 19:23:34 +05:30
val playingQueue = mutableListOf<String>()
2022-07-12 20:57:56 +05:30
}