suyu/src/android/app/src/main/java/dev/suyu/suyu_emu/features/input/model/NativeTrigger.kt

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

12 lines
328 B
Kotlin
Raw Normal View History

// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
2024-03-11 22:30:43 -04:00
// SPDX-FileCopyrightText: 2024 suyu Emulator Project
2024-03-05 03:42:40 -05:00
// SPDX-License-Identifier: GPL-2.0-or-later
2024-03-31 20:08:49 -04:00
package dev.suyu.suyu_emu.features.input.model
2024-03-05 03:42:40 -05:00
// Must match enum in src/common/settings_input.h
enum class NativeTrigger(val int: Int) {
LTrigger(0),
RTrigger(1)
}