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