Skip to content

Commit

Permalink
fix(client): move steeringAngle property to Vehicle class (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxshady authored Dec 29, 2023
1 parent e04d777 commit 505548e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1688,6 +1688,11 @@ declare module "alt-client" {
*/
public resetDashboardLights(): void;

/**
* @remarks Setter needs to be called in everytick and engine must be off.
*/
public steeringAngle: number;

// normal meta

public setMeta<K extends string>(key: K, value: shared.InterfaceValueByKey<ICustomVehicleMeta, K>): void;
Expand Down Expand Up @@ -4354,11 +4359,6 @@ declare module "alt-client" {
*/
public oilLevel: number;

/**
* @remarks Setter needs to be called in everytick and engine must be off.
*/
public steeringAngle: number;

public suspensionHeight: number;
}

Expand Down

0 comments on commit 505548e

Please sign in to comment.