first commit

This commit is contained in:
Kolyah35
2026-03-18 12:51:32 +03:00
commit 97ef2458fd
63 changed files with 10658 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package p000;
import java.util.TimerTask;
/* renamed from: ac */
/* loaded from: microcounterstrike.jar:ac.class */
public final class CountdownTimerTask extends TimerTask {
/* renamed from: a */
public int value11;
public CountdownTimerTask(int i) {
this.value11 = i + 1;
}
@Override // java.util.TimerTask, java.lang.Runnable
public final void run() {
this.value11--;
if (this.value11 == 0) {
cancel();
}
}
}