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,21 @@
package com.m3gworks.util;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
import p000.FastAcos;
/* loaded from: microcounterstrike.jar:com/m3gworks/util/EngineTestMidlet.class */
public class EngineTestMidlet extends MIDlet {
public EngineTestMidlet() {
System.out.println(new StringBuffer("arccos(0.5)=").append(FastAcos.getDouble78(0.5d)).toString());
}
public void startApp() throws MIDletStateChangeException {
}
public void pauseApp() {
}
public void destroyApp(boolean z) throws MIDletStateChangeException {
}
}