Files
micro-counter-strike-decomp…/p000/OverlayMenuBase.java
2026-03-18 12:51:32 +03:00

65 lines
1.9 KiB
Java

package p000;
import javax.microedition.lcdui.Graphics;
/* renamed from: g */
/* loaded from: microcounterstrike.jar:g.class */
public abstract class OverlayMenuBase {
/* renamed from: c */
private static OverlayMenuBase overlayMenuBase190;
/* renamed from: a */
public int value191;
/* renamed from: b */
public boolean flag192 = false;
/* renamed from: a */
public static void execute231() {
PlatformServices.getInstance().loadInGameMenuResources();
}
/* renamed from: b */
public static void execute232() {
PlatformServices.getInstance().unloadInGameMenuResources();
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v0, types: [g] */
/* JADX WARN: Type inference failed for: r0v1, types: [java.lang.Throwable] */
/* JADX WARN: Type inference failed for: r0v2, types: [java.lang.Throwable] */
/* JADX WARN: Type inference failed for: r0v6, types: [g] */
/* renamed from: c */
public static OverlayMenuBase getInstance() {
?? r0 = overlayMenuBase190;
if (r0 == 0) {
try {
r0 = (OverlayMenuBase) PlatformServices.getInstance().getInGameMenuOverlayClass().newInstance();
overlayMenuBase190 = r0;
} catch (IllegalAccessException e) {
r0.printStackTrace();
} catch (InstantiationException e2) {
r0.printStackTrace();
}
}
return overlayMenuBase190;
}
/* renamed from: a */
public abstract void execute23(Graphics graphics, GameRenderCanvas c0002ab);
/* renamed from: a */
public abstract void execute29(int i, int i2);
/* renamed from: d */
public void execute34() {
this.flag192 = true;
}
/* renamed from: e */
public void execute35() {
this.flag192 = false;
}
}