remove unused variables

This commit is contained in:
in0finite 2021-11-21 21:52:11 +01:00
parent c35847b782
commit 864dd6239c

View file

@ -45,8 +45,7 @@ namespace SanAndreasUnity.Behaviours.Vehicles
[HideInInspector]
public Light m_frontLeftLight, m_frontRightLight, m_rearLeftLight, m_rearRightLight;
private bool frontLeftLightOk = true, frontRightLightOk = true, rearLeftLightOk = true, rearRightLightOk = true,
m_frontLeftLightPowered = true, m_frontRightLightPowered = true, m_rearLeftLightPowered = true, m_rearRightLightPowered = true;
private bool frontLeftLightOk = true, frontRightLightOk = true, rearLeftLightOk = true, rearRightLightOk = true;
private const float blinkerSum = 1.5f;