Skip to content

Commit

Permalink
Add grenade recognition
Browse files Browse the repository at this point in the history
  • Loading branch information
RedBigz committed Nov 7, 2024
1 parent 797a8c5 commit d8e6968
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions TABGVR/Player/Mundanities/Grenades.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using JetBrains.Annotations;

namespace TABGVR.Player.Mundanities;

public class Grenades
{
[CanBeNull]
public static Grenade SelectedGrenade =>
PlayerManager.LocalPlayer.player.GetComponent<Holding>().rightHand.GetComponentInChildren<Grenade>();
}

0 comments on commit d8e6968

Please sign in to comment.