Add game source, converter pipeline, and web port

This commit is contained in:
2026-08-12 18:59:06 +02:00
parent 3e6635eac6
commit bd13ad67cc
97 changed files with 8781 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
* Decompiled with CFR 0.152.
*/
package mygame;
import jme3.hello.TestCameraNode;
public class Main {
public static void main(String[] args) {
TestCameraNode app = new TestCameraNode();
app.setDisplayFps(false);
app.setDisplayStatView(false);
app.start();
}
}