Back to project page picturepuzzle.
The source code is released under:
GNU General Public License
If you think the Android project picturepuzzle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * // w w w . ja va 2 s .c o m */ package me.crr.picturepuzzle; /** * @author Chris * */ public class Texture { public int textureID; public int width; public int height; /** * @param textureID * @param width * @param height */ public Texture(int textureID, int width, int height) { this.textureID = textureID; this.width = width; this.height = height; } }