PIbd-21_Zhirnova_A_E_Double.../DoubleDeckerBus/MovementStrategy/IMoveableObject.java

10 lines
292 B
Java
Raw Normal View History

package DoubleDeckerBus.MovementStrategy;
import DoubleDeckerBus.DirectionType;
public interface IMoveableObject {
public ObjectParameters GetObjectParameters();
public int GetStep();
boolean CheckCanMove(DirectionType direction);
void MoveObject(DirectionType direction);
}