2022-11-07 00:26:51 +04:00
|
|
|
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();
|
2022-12-06 15:01:05 +04:00
|
|
|
String getInfo();
|
2022-11-07 00:26:51 +04:00
|
|
|
}
|