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