WiiUpdateCallback: Add interface for update callback

This commit is contained in:
OatmealDome
2022-01-09 15:42:26 -05:00
parent e4372a317d
commit 7c86baee50
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// 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);
}