2022-11-10 16:44:45 +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 DrawningObject(Graphics2D g);
|
|
|
|
Point GetLeftTop();
|
|
|
|
Point GetRightBottom();
|
2022-12-02 11:17:40 +04:00
|
|
|
String GetInfo();
|
2022-11-10 16:44:45 +04:00
|
|
|
}
|