17 lines
278 B
Java
17 lines
278 B
Java
|
package Classes;
|
||
|
|
||
|
import java.awt.*;
|
||
|
|
||
|
public interface IDrawingObject
|
||
|
{
|
||
|
public float getStep();
|
||
|
|
||
|
void SetObject(int x, int y, int width, int height);
|
||
|
|
||
|
void MoveObject(Direction direction);
|
||
|
|
||
|
void DrawingObject(Graphics g);
|
||
|
|
||
|
ObjectData getCurrentPosition();
|
||
|
}
|