PlayerWeaponManagement.cs 186 B

1234567
  1. using UnityEngine;
  2. using System.Collections.Generic;
  3. public class PlayerWeaponManager : MonoBehaviour
  4. {
  5. public List<FirstPersonWeapon> weaponObjects = new(); // Taille max 5
  6. }