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

48 lines
1.5 KiB
Java

package p000;
/* renamed from: as */
/* loaded from: microcounterstrike.jar:as.class */
public abstract class InputStateBase {
/* renamed from: a */
private static InputStateBase inputStateBase92;
/* renamed from: c */
public boolean[] flag93;
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v0, types: [as] */
/* 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: [as] */
/* renamed from: b */
public static InputStateBase getInstance() {
?? r0 = inputStateBase92;
if (r0 == 0) {
try {
r0 = (InputStateBase) PlatformServices.getInstance().getPlayerInputControllerClass().newInstance();
inputStateBase92 = r0;
} catch (IllegalAccessException e) {
r0.printStackTrace();
} catch (InstantiationException e2) {
r0.printStackTrace();
}
}
return inputStateBase92;
}
/* renamed from: a */
public abstract void execute125();
/* renamed from: a */
public void execute126(int i, boolean z) {
if (i != -1) {
this.flag93[i] = z;
return;
}
for (int i2 = 0; i2 < this.flag93.length; i2++) {
this.flag93[i2] = z;
}
}
}