summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/BooleanSetting.kt
blob: f0f270c76f5b41af6833785e86d74c06fe3c71bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

package org.yuzu.yuzu_emu.features.settings.model

class BooleanSetting(
    key: String,
    section: String,
    var value: Boolean
) : Setting(key, section) {
    override val valueAsString get() = if (value) "True" else "False"
}