1 2 3 4 5 6 7 8
package sk.neuromancer.sphaera.interf; import com.badlogic.gdx.math.Vector3; public interface Moveable { public Vector3 getVelocity(); public void move(float howMuch); }