Back to project page CircleWorldGDX.
The source code is released under:
MIT License
If you think the Android project CircleWorldGDX 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.fdangelo.circleworld.utils; /*w ww . java 2s . c o m*/ public class Vector2I { public int x; public int y; public Vector2I() { } public Vector2I(final int x, final int y) { this.x = x; this.y = y; } }