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.adt; /*from ww w . ja v a 2 s .co m*/ import com.badlogic.gdx.math.Vector2; public interface Container { public int x(); public int y(); public int width(); public int height(); public Vector2 center(); }