Добавление стратегии

This commit is contained in:
Arslan 2024-03-04 04:01:59 +04:00
parent fb66d11e9e
commit 62ef6652a4

View File

@ -58,6 +58,11 @@ public class DrawningFighterJet : DrawningJet
g.FillRectangle(brBlack, _startPosX.Value + 45, _startPosY.Value + 20, 5, 10); g.FillRectangle(brBlack, _startPosX.Value + 45, _startPosY.Value + 20, 5, 10);
g.FillRectangle(brBlack, _startPosX.Value + 45, _startPosY.Value + 110, 5, 10); g.FillRectangle(brBlack, _startPosX.Value + 45, _startPosY.Value + 110, 5, 10);
} }
if (entityFighterJet.Fuel)
{
g.FillRectangle(additionalBrush, _startPosX.Value + 80, _startPosY.Value + 56, 30, 4);
g.FillRectangle(additionalBrush, _startPosX.Value + 80, _startPosY.Value + 81, 30, 5);
}
} }
} }