suyu/src/android/app/src/main/java/org/suyu/suyu_emu/model/SelectableItem.kt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
293 B
Kotlin
Raw Normal View History

// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
2024-03-12 03:30:43 +01:00
// SPDX-FileCopyrightText: 2024 suyu Emulator Project
2024-03-05 09:42:40 +01:00
// SPDX-License-Identifier: GPL-2.0-or-later
2024-03-12 03:30:43 +01:00
package org.suyu.suyu_emu.model
2024-03-05 09:42:40 +01:00
interface SelectableItem {
var selected: Boolean
fun onSelectionStateChanged(selected: Boolean)
}