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

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

interface AbstractBooleanSetting : AbstractSetting {
    val boolean: Boolean

    fun setBoolean(value: Boolean)
}