Back to project page Replica-Jump.
The source code is released under:
GNU General Public License
If you think the Android project Replica-Jump 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.vinicius.dsl.replicajump.level; /*from www. jav a 2 s.c om*/ public class LevelObject { private float posX,posY; private int type; public LevelObject(float px,float py,int tp){ posX = px; posY = py; type = tp; } public float getX(){ return posX; } public float getY(){ return posY; } public int getType(){ return type; } }