summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/view/RunnableSetting.kt
blob: dc89b57748656d65b521224a3a326043d4121a77 (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.view

class RunnableSetting(
    titleId: Int,
    descriptionId: Int,
    val runnable: () -> Unit
) : SettingsItem(null, titleId, descriptionId) {
    override val type = TYPE_RUNNABLE
}