PIbd-23_Minhasapov_R.H._Exc.../IDrawningObject.java

11 lines
272 B
Java

import java.awt.*;
public interface IDrawningObject {
float getStep();
void setObject(int x, int y, int width, int height);
void moveObject(Direction direction);
void drawningObject(Graphics2D g);
float[] getCurrentPosition();
String getInfo();
}