10 lines
292 B
Java
10 lines
292 B
Java
|
package DoubleDeckerBus.MovementStrategy;
|
||
|
|
||
|
import DoubleDeckerBus.DirectionType;
|
||
|
|
||
|
public interface IMoveableObject {
|
||
|
public ObjectParameters GetObjectParameters();
|
||
|
public int GetStep();
|
||
|
boolean CheckCanMove(DirectionType direction);
|
||
|
void MoveObject(DirectionType direction);
|
||
|
}
|