2023-11-13 21:25:33 +03:00
|
|
|
package Trolleybus;
|
|
|
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public interface IDrawingDoors {
|
|
|
|
public void SetCntOfDoors(int cnt);
|
|
|
|
public void DrawDoors(Graphics2D g, Color BodyColor, int _startPosX, int _startPosY);
|
2023-12-13 11:17:37 +04:00
|
|
|
public int GetCntOfDoors();
|
2023-11-13 21:25:33 +03:00
|
|
|
}
|