2022-11-03 22:49:09 +04:00
|
|
|
import java.awt.*;
|
|
|
|
|
2022-11-05 13:06:59 +04:00
|
|
|
public interface IAdditionalDrawingObject
|
|
|
|
{
|
2022-11-03 22:49:09 +04:00
|
|
|
void SetAddEnum(int airplaneWindow);
|
|
|
|
void DrawAirplaneWindow(Color colorAirplaneWindow, Graphics g, float _startPosX, float _startPosY);
|
2022-11-18 23:30:03 +04:00
|
|
|
int GetAddEnum();
|
2022-11-03 22:49:09 +04:00
|
|
|
}
|