14 lines
402 B
C#
14 lines
402 B
C#
namespace Gley.UrbanSystem.Internal
|
|
{
|
|
public interface IVehicleLightsComponent
|
|
{
|
|
void DeactivateLights();
|
|
void Initialize();
|
|
void SetBlinker(BlinkType blinkLeft);
|
|
void SetBrakeLights(bool brake);
|
|
void SetMainLights(bool mainLights);
|
|
void SetReverseLights(bool reverse);
|
|
void UpdateLights(float realtimeSinceStartup);
|
|
}
|
|
}
|