@@ -6,34 +6,86 @@ namespace AltV.Net
66{
77 public partial class Alt
88 {
9+ /// <summary>
10+ /// Creates a blip for a specific player on a specific position.
11+ /// </summary>
12+ /// <param name="player">The player for which the blip is created.</param>
13+ /// <param name="type">The type of the blip.</param>
14+ /// <param name="pos">The position on which the blip is created.</param>
15+ /// <returns>The created Blip.</returns>
916 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
1017 public static IBlip CreateBlip ( IPlayer player , byte type , Position pos ) =>
1118 Module . Server . CreateBlip ( player , type , pos ) ;
1219
20+ /// <summary>
21+ /// Create a blip for a specific player, attached to specific entity.
22+ /// </summary>
23+ /// <param name="player">The player for which the blip is created.</param>
24+ /// <param name="type">The type of the blip.</param>
25+ /// <param name="entityAttach">The entity to which the blip is atteched to.</param>
26+ /// <returns>The created Blip.</returns>
1327 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
1428 public static IBlip CreateBlip ( IPlayer player , byte type , IEntity entityAttach ) =>
1529 Module . Server . CreateBlip ( player , type , entityAttach ) ;
1630
31+ /// <summary>
32+ /// Creates a blip for a specific player on a specific position.
33+ /// </summary>
34+ /// <param name="player">The player for which the blip is created.</param>
35+ /// <param name="type">The type of the blip.</param>
36+ /// <param name="pos">The position on which the blip is created.</param>
37+ /// <returns>The created Blip.</returns>
1738 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
1839 public static IBlip CreateBlip ( IPlayer player , BlipType type , Position pos ) =>
1940 Module . Server . CreateBlip ( player , ( byte ) type , pos ) ;
2041
42+ /// <summary>
43+ /// Creates a blip for a specific player, attached to specific entity.
44+ /// </summary>
45+ /// <param name="player">The player for which the blip is created.</param>
46+ /// <param name="type">The type of the blip.</param>
47+ /// <param name="entityAttach">The entity to which the blip is atteched to.</param>
48+ /// <returns>The created Blip.</returns>
2149 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
2250 public static IBlip CreateBlip ( IPlayer player , BlipType type , IEntity entityAttach ) =>
2351 Module . Server . CreateBlip ( player , ( byte ) type , entityAttach ) ;
2452
53+ /// <summary>
54+ /// Creates a blip for all players on a specific position.
55+ /// </summary>
56+ /// <param name="type">The type of the blip.</param>
57+ /// <param name="pos">The position on which the blip is created.</param>
58+ /// <returns>The created Blip.</returns>
2559 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
2660 public static IBlip CreateBlip ( byte type , Position pos ) =>
2761 Module . Server . CreateBlip ( null , type , pos ) ;
2862
63+ /// <summary>
64+ /// Creates a blip for all players, attached to specific entity.
65+ /// </summary>
66+ /// <param name="type">The type of the blip.</param>
67+ /// <param name="entityAttach">The entity to which the blip is atteched to.</param>
68+ /// <returns>The created Blip.</returns>
2969 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
3070 public static IBlip CreateBlip ( byte type , IEntity entityAttach ) =>
3171 Module . Server . CreateBlip ( null , type , entityAttach ) ;
3272
73+ /// <summary>
74+ /// Creates a blip for all players on a specific position.
75+ /// </summary>
76+ /// <param name="type">The type of the blip.</param>
77+ /// <param name="pos">The position on which the blip is created.</param>
78+ /// <returns>The created Blip.</returns>
3379 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
3480 public static IBlip CreateBlip ( BlipType type , Position pos ) =>
3581 Module . Server . CreateBlip ( null , ( byte ) type , pos ) ;
3682
83+ /// <summary>
84+ /// Creates a blip for all players, attached to specific entity.
85+ /// </summary>
86+ /// <param name="type">The type of the blip.</param>
87+ /// <param name="entityAttach">The entity to which the blip is atteched to.</param>
88+ /// <returns>The created Blip.</returns>
3789 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
3890 public static IBlip CreateBlip ( BlipType type , IEntity entityAttach ) =>
3991 Module . Server . CreateBlip ( null , ( byte ) type , entityAttach ) ;
0 commit comments