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

package org.yuzu.yuzu_emu.overlay.model

import androidx.annotation.IntegerRes

data class OverlayControlDefault(
    val buttonId: String,
    @IntegerRes val landscapePositionResource: Pair<Int, Int>,
    @IntegerRes val portraitPositionResource: Pair<Int, Int>,
    @IntegerRes val foldablePositionResource: Pair<Int, Int>
)