using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(menuName = "New Weapon")] public class WeaponInfo : ScriptableObject { //Define variables and game componenets related to the information of the weapon public GameObject weaponPrefab; public float weaponCooldown; public int weaponDamage; public float weaponRange; }