10 lines
198 B
Java
10 lines
198 B
Java
public interface IMoveableObject {
|
|
ObjectParameters GetObjectPosition();
|
|
|
|
int GetStep();
|
|
|
|
boolean CheckCanMove(DirectionType direction);
|
|
|
|
void MoveObject(DirectionType direction);
|
|
}
|