Skip to content

Commit

Permalink
Merge branch 'rc' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxoh committed Sep 26, 2024
2 parents 8177cfc + 657c993 commit 9c3e8e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions api/AltV.Net.Client/Alt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public static bool GetBaseObjectById(BaseObjectType type, uint id, [MaybeNullWhe
public static IReadOnlyCollection<IPed> GetAllPeds() => CoreImpl.GetAllPeds();
public static IReadOnlyCollection<IObject> GetAllNetworkObjects() => CoreImpl.GetAllNetworkObjects();
public static IReadOnlyCollection<IColShape> GetAllColShapes() => CoreImpl.GetAllColShapes();
public static IReadOnlyCollection<ICheckpoint> GetAllCheckPoints() => CoreImpl.GetAllCheckpoints();
public static IReadOnlyCollection<IMarker> GetAllMarkers() => CoreImpl.GetAllMarkers();
public static IReadOnlyCollection<ITextLabel> GetAllTextLabels() => CoreImpl.GetAllTextLabels();
public static IReadOnlyCollection<ILocalObject> GetAllLocalObjects() => CoreImpl.GetAllLocalObjects();
Expand Down
2 changes: 2 additions & 0 deletions api/AltV.Net/Alt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,7 @@ public static byte SyncSendThreadCount
public static string Branch => CoreImpl.Branch;
public static string Version => CoreImpl.Version;
public static bool IsMainThread => CoreImpl.IsMainThread();

public static uint[] LoadedVehicleModels => CoreImpl.LoadedVehicleModels;
}
}

0 comments on commit 9c3e8e4

Please sign in to comment.