1
0
Fork 0

Ajout de fond

This commit is contained in:
Lucas 2017-01-21 00:18:45 +01:00
parent 9e5d6a03c3
commit 40ac8f84fb
6 changed files with 67 additions and 7 deletions

View file

@ -0,0 +1,11 @@
package globalgamejam.tiles;
import globalgamejam.render.Texture;
public class Fond extends Tile {
public Fond(String path){
super();
super.setTexture(Texture.loadTexture(path));
}
}

View file

@ -0,0 +1,10 @@
package globalgamejam.tiles;
import globalgamejam.math.Color4f;
public class Objet extends Tile {
public Objet(){
super();
super.setColor(Color4f.GREEN);
}
}