-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
972d0c7
commit 67969a6
Showing
6 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using AltV.Net.Elements.Entities; | ||
|
||
namespace AltV.Net.Data; | ||
|
||
/// <summary> | ||
/// Streamed entity | ||
/// </summary> | ||
/// <param name="Entity">The entity</param> | ||
/// <param name="Distance">The distance between the player and this entity</param> | ||
public record StreamedEntityDistance(IEntity Entity, int Distance); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule runtime
updated
8 files
+0 −3 | .github/workflows/build.yml | |
+0 −6 | c-api/cache/CachedPlayer.h | |
+0 −4 | c-api/entities/connection_info.cpp | |
+0 −1 | c-api/entities/connection_info.h | |
+21 −4 | c-api/entities/player.cpp | |
+4 −3 | c-api/entities/player.h | |
+5 −5 | c-api/func_table.cpp | |
+1 −1 | cpp-sdk |