Files
ox_lib/package/server/resource/index.ts

12 lines
341 B
TypeScript
Raw Normal View History

import type { VehicleProperties } from 'shared';
2022-09-14 23:46:00 +02:00
export * from './acl';
2022-09-15 00:10:04 +02:00
export * from './locale';
2022-12-11 12:40:19 +11:00
export * from './callback';
export * from './version';
export * from './addCommand';
export function setVehicleProperties(vehicle: number, props: VehicleProperties) {
Entity(vehicle).state.set('ox_lib:setVehicleProperties', props, true)
}