moved to jme3

This commit is contained in:
Ziver Koc 2020-03-21 19:57:43 +01:00
parent 4dd9985229
commit d563f539a5
20 changed files with 124 additions and 114 deletions

View file

@ -2,22 +2,20 @@ apply plugin: "java"
sourceCompatibility = 1.8
sourceSets.main.java.srcDirs = [ "src/" ]
sourceSets.main.resources.srcDirs = ["../android/assets"]
project.ext.mainClassName = "se.cookery.desktop.DesktopLauncher"
project.ext.assetsDir = new File("../android/assets")
dependencies {
implementation project(":core")
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
runtime "org.jmonkeyengine:jme3-lwjgl3:${jme3Version}-stable"
runtime "org.jmonkeyengine:jme3-desktop:${jme3Version}-stable"
}
task run(dependsOn: classes, type: JavaExec) {
main = project.mainClassName
classpath = sourceSets.main.runtimeClasspath
standardInput = System.in
workingDir = project.assetsDir
ignoreExitValue = true
}
@ -25,7 +23,6 @@ task debug(dependsOn: classes, type: JavaExec) {
main = project.mainClassName
classpath = sourceSets.main.runtimeClasspath
standardInput = System.in
workingDir = project.assetsDir
ignoreExitValue = true
debug = true
}

View file

@ -1,12 +1,10 @@
package se.cookery.desktop;
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
import se.cookery.CookeryClient;
public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
new LwjglApplication(new CookeryClient(), config);
CookeryClient app = new CookeryClient();
app.start();
}
}