Back to project page Ready-Set-Rogue.
The source code is released under:
GNU General Public License
If you think the Android project Ready-Set-Rogue 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.warsheep.scamp.components; // w ww . java 2 s.co m import com.badlogic.ashley.core.Component; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.math.Vector3; public class TransformComponent extends Component { public Vector3 position = new Vector3(); public Vector3 previousPosition = new Vector3(); public Vector2 scale = new Vector2(1.0f, 1.0f); public float rotation = 0.0f; public float xOffset = 0.0f; public float yOffset = 0.0f; }