mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-18 19:32:41 +00:00
Merge pull request #14424 from Simonx22/android/wii-update-callback-kotlin
Android: Convert WiiUpdateCallback to Kotlin
This commit is contained in:
commit
6257823caf
@ -1,11 +0,0 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
package org.dolphinemu.dolphinemu.utils;
|
||||
|
||||
import androidx.annotation.Keep;
|
||||
|
||||
public interface WiiUpdateCallback
|
||||
{
|
||||
@Keep
|
||||
boolean run(int processed, int total, long titleId);
|
||||
}
|
||||
@ -0,0 +1,10 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
package org.dolphinemu.dolphinemu.utils
|
||||
|
||||
import androidx.annotation.Keep
|
||||
|
||||
@Keep
|
||||
fun interface WiiUpdateCallback {
|
||||
fun run(processed: Int, total: Int, titleId: Long): Boolean
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user