Skip to content

Commit

Permalink
add SetPassword, and VoiceServerSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxoh committed Sep 5, 2024
1 parent 82afbcb commit a224fd0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/AltV.Net/Alt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,5 +223,9 @@ public static byte SyncSendThreadCount

public static void StopServer() => CoreImpl.StopServer();
public static WeaponModelInfo? GetWeaponModelInfo(uint hash) => CoreImpl.GetWeaponModelInfo(hash);

public static void SetPassword(string password) => CoreImpl.SetPassword(password);
public static void SetVoiceExternal(string host, ushort port) => CoreImpl.SetVoiceExternal(host, port);
public static void SetVoiceExternalPublic(string host, ushort port) => CoreImpl.SetVoiceExternalPublic(host, port);
}
}

0 comments on commit a224fd0

Please sign in to comment.