10 lines
250 B
Java
10 lines
250 B
Java
|
package ProjectElectricLocomotive;
|
||
|
import java.awt.*;
|
||
|
|
||
|
public interface IMoveableObject {
|
||
|
ObjectParameters GetObjectPosition();
|
||
|
int GetStep();
|
||
|
boolean CheckCanMove(DyrectionType direction);
|
||
|
void MoveObject(DyrectionType direction);
|
||
|
}
|