LibreTube/app/src/main/java/com/github/libretube/Globals.kt
2022-07-23 15:41:57 +02:00

17 lines
324 B
Kotlin

package com.github.libretube
/**
* Global variables can be stored here
*/
object Globals {
// for the player fragment
var IS_FULL_SCREEN = false
var MINI_PLAYER_VISIBLE = false
// for the data saver mode
var DATA_SAVER_MODE_ENABLED = false
// for downloads
var IS_DOWNLOAD_RUNNING = false
}