15 lines
361 B
Java
15 lines
361 B
Java
package MonorailHard.DrawningObjects;
|
|
|
|
import MonorailHard.NumberType;
|
|
|
|
import java.awt.*;
|
|
|
|
public interface IDraw {
|
|
public void ChangeWheelsNumb(int x);
|
|
public NumberType WheelsNumb();
|
|
public void DrawWheels(Graphics2D g2d);
|
|
public void DrawWheel(Graphics2D g2d, int x, int y);
|
|
public void ChangeX(int x);
|
|
public void ChangeY(int y);
|
|
}
|