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); }