-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-added neon enum , added playerVehicle, added methods to tuningVehicle
- Loading branch information
1 parent
6cfe4cb
commit ac74ada
Showing
3 changed files
with
103 additions
and
4 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using AltV.Net; | ||
namespace AltV.Atlas.Vehicles.Entities; | ||
|
||
public class AtlasPlayerVehicle( ICore core, IntPtr nativePointer, uint id ) : AtlasTuningVehicle( core, nativePointer, id ) | ||
Check warning on line 4 in src/Entities/AtlasPlayerVehicle.cs GitHub Actions / create_nuget
|
||
{ | ||
/// <summary> | ||
/// The id of the vehicle owner | ||
/// </summary> | ||
public uint OwnerId { get; set; } | ||
} |
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,25 @@ | ||
namespace AltV.Atlas.Vehicles.Enums; | ||
|
||
[Flags] | ||
public enum ENeonStyle | ||
{ | ||
None = 0, | ||
Left = 1, | ||
Right = 2, | ||
Top = 4, | ||
Back = 8, | ||
|
||
LeftRight = Left | Right, | ||
LeftTop = Left | Top, | ||
LeftBack = Left | Back, | ||
RightTop = Right | Top, | ||
RightBack = Right | Back, | ||
TopBack = Top | Back, | ||
|
||
LeftRightTop = Left | Right | Top, | ||
LeftRightBack = Left | Right | Back, | ||
LeftTopBack = Left | Top | Back, | ||
RightTopBack = Right | Top | Back, | ||
|
||
LeftRightTopBack = Left | Right | Top | Back | ||
} |