9 lines
247 B
Java
9 lines
247 B
Java
|
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();
|
||
|
}
|