2022-11-10 15:44:45 +03:00
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public interface IDrawingObject
|
|
|
|
{
|
|
|
|
float getStep();
|
|
|
|
void SetObject(int x, int y, int width, int height);
|
|
|
|
void MoveObject(Direction direction);
|
|
|
|
void DrawningObject(Graphics2D g);
|
|
|
|
Point GetLeftTop();
|
|
|
|
Point GetRightBottom();
|
2022-12-02 10:17:40 +03:00
|
|
|
String GetInfo();
|
2022-11-10 15:44:45 +03:00
|
|
|
}
|