Added absGDX dependency

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

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 AgdxGame {
public class CannonGame extends ApplicationAdapter {
SpriteBatch batch;
Texture img;
@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 {
}