Back to project page gameengine.
The source code is released under:
Apache License
If you think the Android project gameengine 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.garrapeta.gameengine.actor; /* w ww . j a v a 2s . c o m*/ import android.graphics.PointF; public interface IAtomicActor { /** * @return posicin en el mundo, en unidades del mundo */ public abstract PointF getWorldPos(); public abstract void setWorldPos(float x, float y); }