Added absGDX dependency

This commit is contained in:
Mike Schwörer 2015-04-10 14:10:32 +02:00
parent f590388454
commit 4d0366cc01
6 changed files with 22 additions and 18 deletions

View File

@ -60,6 +60,7 @@ project(":core") {
dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile files("lib/absGDX-framework-1.0.jar")
}
}

Binary file not shown.

Binary file not shown.

View File

@ -1,27 +1,18 @@
package de.samdev.cannonshooter;
import com.badlogic.gdx.ApplicationAdapter;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import de.samdev.absgdx.framework.AgdxGame;
public class CannonGame extends ApplicationAdapter {
SpriteBatch batch;
Texture img;
public class CannonGame extends AgdxGame {
@Override
public void create () {
batch = new SpriteBatch();
img = new Texture("badlogic.jpg");
public void onCreate() {
// TODO Auto-generated method stub
}
@Override
public void render () {
Gdx.gl.glClearColor(1, 0, 0, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
batch.begin();
batch.draw(img, 0, 0);
batch.end();
public void onUpdate(float arg0) {
// TODO Auto-generated method stub
}
}

View File

@ -0,0 +1,6 @@
package de.samdev.cannonshooter;
public final class Textures {
}

View File

@ -2,11 +2,17 @@ package de.samdev.cannonshooter.desktop;
import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
import de.samdev.absgdx.framework.util.AndroidResolutions;
import de.samdev.cannonshooter.CannonGame;
public class DesktopLauncher {
public static void main (String[] arg) {
LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
config.width = AndroidResolutions.RES__16_9.x;
config.height = AndroidResolutions.RES__16_9.y;
new LwjglApplication(new CannonGame(), config);
}
}