Back to project page SnowLand.
The source code is released under:
GNU General Public License
If you think the Android project SnowLand 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.walrus.gui; //from ww w. j a v a2 s . co m public class GridSpatiator { int posX, posY; public GridSpatiator(int x, int y){ posX = x; posY = y; } public int getPosX() { return posX; } public void setPosX(int posX) { this.posX = posX; } public int getPosY() { return posY; } public void setPosY(int posY) { this.posY = posY; } public void nextElement(){ posY+=70; } }