using System.Collections; using System.Collections.Generic; using UnityEngine; public class WeaponController : MonoBehaviour { [SerializeField] private GameObject bulletPrefab; [SerializeField] private Transform firePos; void Start() { } // Update is called once per frame void Update() { } }