9 lines
249 B
Java
9 lines
249 B
Java
import java.awt.*;
|
|
public interface IDrawingObject {
|
|
public float Step=0;
|
|
void SetObject(int x, int y, int width, int height);
|
|
void MoveObject(Direction direction);
|
|
void DrawingObject(Graphics g);
|
|
float[] GetCurrentPosition();
|
|
}
|