2022-10-08 15:16:47 +04:00
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public interface IDrawingObject {
|
|
|
|
float getStep();
|
|
|
|
void setObject(int x, int y, int width, int height);
|
|
|
|
void moveObject(Direction direction);
|
|
|
|
void drawingObject(Graphics2D g);
|
|
|
|
float[] getCurrentPosition();
|
2022-11-20 22:27:21 +04:00
|
|
|
String getInfo();
|
2022-10-08 15:16:47 +04:00
|
|
|
}
|