Back to project page X3n0break.
The source code is released under:
GNU General Public License
If you think the Android project X3n0break 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 org.x3n0m0rph59.breakout; //ww w . ja v a 2s . c o m public final class SpriteTuple { private String fileName; private float width, height; private int tw, th; public SpriteTuple(String fileName, float width, float height, int tw, int th) { this.fileName = fileName; this.width = width; this.height = height; this.tw = tw; this.th = th; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public float getWidth() { return width; } public void setWidth(float width) { this.width = width; } public float getHeight() { return height; } public void setHeight(float height) { this.height = height; } public int getTw() { return tw; } public void setTw(int tw) { this.tw = tw; } public int getTh() { return th; } public void setTh(int th) { this.th = th; } }