summaryrefslogtreecommitdiff
path: root/core/src/sk/neuromancer/sphaera/interf/Moveable.java
blob: 10e8a73c57473433f7e57c0fdd426540c1431a15 (plain)
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);
}