It turns out that in the CMD it allows me to execute the following command:
C:\Users\Kevin\Desktop\Codigo\LibGDX\libgdx-nightly-latest\java -cp gdx.jar;gdx-natives.jar;gdx-backend-lwjgl.jar;gdx-backend-lwjgl-natives.jar;extensions\gdx-tools\gdx-tools.jar com.badlogic.gdx.tools.particleeditor.ParticleEditor
But he would like to know how to execute this same command but with a .bat file
I tried this:
@echo off
C:\Users\Kevin\Desktop\Codigo\LibGDX\libgdx-nightly-latest\java -cp gdx.jar;gdx-natives.jar;gdx-backend-lwjgl.jar;gdx-backend-lwjgl-natives.jar;extensions\gdx-tools\gdx-tools.jar com.badlogic.gdx.tools.particleeditor.ParticleEditor
pause
exit
But I get the following problem:
I leave the link, where the file is, with which I have the problem: Here