added nametags

This commit is contained in:
mccarreon
2023-08-09 17:50:57 -07:00
parent bce1f8e1f7
commit bbf0a765d5
12 changed files with 129 additions and 37 deletions

View File

@@ -5,7 +5,7 @@ using Sandbox;
namespace LuckerGame.Components.Pawn;
public partial class PawnInventory : EntityComponent<Entities.Racer>
public partial class PawnInventory : EntityComponent<Entities.Pawn>
{
[Net] private List<Weapon> Weapons { get; set; } = new List<Weapon>();
[Net, Predicted] public Weapon ActiveWeapon { get; private set; }