Skip to content

Commit

Permalink
feat(client): add OnPLayerChangeAnimation and OnPlayerChangeInterior
Browse files Browse the repository at this point in the history
  • Loading branch information
Doxoh committed Mar 18, 2024
1 parent ec4ff35 commit 17e4cdf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/AltV.Net.Client/Alt.Events.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,18 @@ public static event NetOwnerChangeDelegate OnNetOwnerChange
remove => CoreImpl.NetOwnerChangeEventHandler.Remove(value);
}

public static event PlayerChangeAnimationDelegate OnPLayerChangeAnimation
{
add => CoreImpl.PlayerChangeAnimationEventHandler.Add(value);
remove => CoreImpl.PlayerChangeAnimationEventHandler.Remove(value);
}

public static event PlayerChangeInteriorDelegate OnPlayerChangeInterior
{
add => CoreImpl.PlayerChangeInteriorEventHandler.Add(value);
remove => CoreImpl.PlayerChangeInteriorEventHandler.Remove(value);
}

public static event WeaponDamageDelegate OnWeaponDamage
{
add => CoreImpl.WeaponDamageEventHandler.Add(value);
Expand Down

0 comments on commit 17e4cdf

Please sign in to comment.