15 lines
279 B
Java
15 lines
279 B
Java
import java.awt.*;
|
|
import java.util.Enumeration;
|
|
|
|
public interface IDrawningObject {
|
|
float Step();
|
|
|
|
void SetObject(int x, int y, int width, int height);
|
|
|
|
void MoveObject(Direction direction);
|
|
|
|
void DrawningObject(Graphics g);
|
|
|
|
float[] GetCurrentPosition();
|
|
}
|