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