android: Convert Action1 to Kotlin

This commit is contained in:
Charles Lombardo 2023-03-11 10:30:39 -05:00 committed by bunnei
parent 7a0d7bb3f3
commit 1a4de8d213
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +0,0 @@
package org.yuzu.yuzu_emu.utils;
public interface Action1<T> {
void call(T t);
}

View File

@ -0,0 +1,5 @@
package org.yuzu.yuzu_emu.utils
interface Action1<T> {
fun call(t: T?)
}