10 lines
250 B
Java
10 lines
250 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();
|
|
}
|