Android: Convert WiiUpdateCallback to Kotlin

This commit is contained in:
Simonx22 2026-02-27 21:30:46 -05:00
parent f898d75bf3
commit 2660412b29
2 changed files with 10 additions and 11 deletions

View File

@ -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);
}

View File

@ -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
}