summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/citra/citra_emu/features/cheats/model/CheatEngine.java
blob: 5748162bb113ae02ce412483e8de0d34fd82da08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.citra.citra_emu.features.cheats.model;

public class CheatEngine {
    public static native Cheat[] getCheats();

    public static native void addCheat(Cheat cheat);

    public static native void removeCheat(int index);

    public static native void updateCheat(int index, Cheat newCheat);

    public static native void saveCheatFile();
}