// Дельта
export interface IDelta {

	// Смещение по оси X
	x: number;

	// Смещение по оси Y
	y: number;
}
