Newer
Older
CactusClient / src / framework / model3D / Movable.java
n-konishi on 8 May 2018 196 bytes first commit
package framework.model3D;

import framework.model3D.Placeable;
import framework.physics.Ground;

public interface Movable extends Placeable {
	public void motion(long interval, Ground ground);
}