@@ -203,6 +203,18 @@ internal static extern void Vehicle_SetNeonActive(IntPtr vehiclePointer, bool le
203203 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
204204 internal static extern void Vehicle_SetNeonColor ( IntPtr vehiclePointer , Rgba color ) ;
205205
206+ [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
207+ internal static extern byte Vehicle_GetLivery ( IntPtr vehiclePointer ) ;
208+
209+ [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
210+ internal static extern void Vehicle_SetLivery ( IntPtr vehiclePointer , byte livery ) ;
211+
212+ [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
213+ internal static extern byte Vehicle_GetRoofLivery ( IntPtr vehiclePointer ) ;
214+
215+ [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
216+ internal static extern void Vehicle_SetRoofLivery ( IntPtr vehiclePointer , byte roofLivery ) ;
217+
206218 [ DllImport ( DllName , CallingConvention = NativeCallingConvention ) ]
207219 internal static extern void Vehicle_GetAppearanceDataBase64 ( IntPtr vehiclePointer , ref IntPtr text ) ;
208220
@@ -268,6 +280,12 @@ internal static extern void Vehicle_SetNeonActive(IntPtr vehiclePointer, bool le
268280
269281 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
270282 internal static extern bool Vehicle_IsFlamethrowerActive ( IntPtr vehiclePointer ) ;
283+
284+ [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
285+ internal static extern float Vehicle_GetLightsMultiplier ( IntPtr vehiclePointer ) ;
286+
287+ [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
288+ internal static extern void Vehicle_SetLightsMultiplier ( IntPtr vehiclePointer , float multiplier ) ;
271289
272290 [ DllImport ( DllName , CharSet = CharSet . Ansi , CallingConvention = NativeCallingConvention ) ]
273291 internal static extern void Vehicle_GetGameStateBase64 ( IntPtr vehiclePointer , ref IntPtr text ) ;
0 commit comments