diff --git a/api/AltV.Net.Client/Alt.cs b/api/AltV.Net.Client/Alt.cs index c9150b70..5ba920ad 100644 --- a/api/AltV.Net.Client/Alt.cs +++ b/api/AltV.Net.Client/Alt.cs @@ -58,6 +58,7 @@ public static bool GetBaseObjectById(BaseObjectType type, uint id, [MaybeNullWhe public static IReadOnlyCollection GetAllPeds() => CoreImpl.GetAllPeds(); public static IReadOnlyCollection GetAllNetworkObjects() => CoreImpl.GetAllNetworkObjects(); public static IReadOnlyCollection GetAllColShapes() => CoreImpl.GetAllColShapes(); + public static IReadOnlyCollection GetAllCheckPoints() => CoreImpl.GetAllCheckpoints(); public static IReadOnlyCollection GetAllMarkers() => CoreImpl.GetAllMarkers(); public static IReadOnlyCollection GetAllTextLabels() => CoreImpl.GetAllTextLabels(); public static IReadOnlyCollection GetAllLocalObjects() => CoreImpl.GetAllLocalObjects(); diff --git a/api/AltV.Net/Alt.cs b/api/AltV.Net/Alt.cs index 37a8cd25..65747df5 100644 --- a/api/AltV.Net/Alt.cs +++ b/api/AltV.Net/Alt.cs @@ -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; } } \ No newline at end of file