mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 14:50:30 +05:30
17 lines
324 B
Kotlin
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
|
|
}
|