export interface IDrawable {
    askForReDraw(): void;
    isPlanToRedraw(): boolean;
}
