mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-23 04:51:02 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package ani.dantotsu.settings
|
||||
|
||||
import java.io.Serializable
|
||||
|
||||
data class UserInterfaceSettings(
|
||||
var darkMode: Boolean? = null,
|
||||
var showYtButton: Boolean = true,
|
||||
var animeDefaultView: Int = 0,
|
||||
var mangaDefaultView: Int = 0,
|
||||
|
||||
//App
|
||||
var immersiveMode: Boolean = false,
|
||||
var smallView: Boolean = true,
|
||||
var defaultStartUpTab: Int = 1,
|
||||
var homeLayoutShow: MutableList<Boolean> = mutableListOf(true, false, false, true, false, false, true),
|
||||
|
||||
//Animations
|
||||
var bannerAnimations: Boolean = true,
|
||||
var layoutAnimations: Boolean = true,
|
||||
var animationSpeed: Float = 1f
|
||||
|
||||
) : Serializable
|
||||
Reference in New Issue
Block a user