Skip to content

Commit

Permalink
tweak: keep consistent styling for enum
Browse files Browse the repository at this point in the history
  • Loading branch information
AvarianKnight authored Sep 22, 2024
1 parent b0a57e8 commit 63d6402
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions VEHICLE/SetVehicleHeadlightShadows.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ NativeDB Introduced: v323
```c
enum eVehicleHeadlightShadowFlags {
NO_HEADLIGHT_SHADOWS = 0, // Default (Lights can be toggled between off, normal and high beams)
HEADLIGHTS_CAST_DYNAMIC_SHADOWS = 1, // Lights Disabled (Lights are fully disabled, cannot be toggled)
HEADLIGHTS_CAST_STATIC_SHADOWS = 2, // Always On (Lights can be toggled between normal and high beams)
HEADLIGHTS_CAST_FULL_SHADOWS = 3
// Default (Lights can be toggled between off, normal and high beams)
NO_HEADLIGHT_SHADOWS = 0,
// Lights Disabled (Lights are fully disabled, cannot be toggled)
HEADLIGHTS_CAST_DYNAMIC_SHADOWS = 1,
// Always On (Lights can be toggled between normal and high beams)
HEADLIGHTS_CAST_STATIC_SHADOWS = 2,
HEADLIGHTS_CAST_FULL_SHADOWS = 3
};
```

Expand Down

0 comments on commit 63d6402

Please sign in to comment.