summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/Action1.kt
blob: 70cc1f73baead316b9fc012dba5f3b87da69c024 (plain) (blame)
1
2
3
4
5
package org.yuzu.yuzu_emu.utils

interface Action1<T> {
    fun call(t: T?)
}