Back to project page Infinite.
The source code is released under:
GNU General Public License
If you think the Android project Infinite listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.detel.infinite.models; /*from ww w . j av a 2 s . co m*/ import com.badlogic.gdx.graphics.Texture; /** * Created by Derick on 2/22/14. */ public class BlockAir extends Block { protected static Texture texture = new Texture("data/air.png"); public static int ID = 0; public BlockAir(int x, int y){ super(x, y); isSolid = false; } @Override public Texture getTexture(){ return texture; } }