Добавлена функция получение объекта IMoveableObject из объекта DrawingPlane

This commit is contained in:
Никита Потапов 2023-10-08 12:22:34 +04:00
parent 0ab91a7bf3
commit b1a2751514

View File

@ -235,5 +235,9 @@ namespace ProjectStormtrooper
g.FillRectangle(brushBodyColor, _startPosX + _planeWidth / 8, _startPosY + _planeHeight / 2 - bodyHeight / 2, _planeWidth - _planeWidth / 8, bodyHeight);
g.DrawRectangle(penBlack, _startPosX + _planeWidth / 8, _startPosY + _planeHeight / 2 - bodyHeight / 2, _planeWidth - _planeWidth / 8, bodyHeight);
}
/// <summary>
/// Получение объекта IMoveableObject из объекта DrawingPlane
/// </summary>
public IMoveableObject GetMoveableObject => new DrawingObjectPlane(this);
}
}