12 lines
327 B
Java
12 lines
327 B
Java
|
package DoubleDeckerBus.DrawningObjects;
|
||
|
|
||
|
import DoubleDeckerBus.DoorNumberType;
|
||
|
|
||
|
public interface IDraw {
|
||
|
public void ChangeDoorsNumber(int x);
|
||
|
public DoorNumberType DoorNumberType();
|
||
|
public void DrawDoor(int x, int y);
|
||
|
public void DrawDoors();
|
||
|
public void ChangeX(int x);
|
||
|
public void ChangeY(int y);
|
||
|
}
|