using System.Collections.Generic; using UnityEngine; namespace Item { public class FlareRegister : MonoBehaviour { public static FlareRegister instance; public List bullets = new(); public List beacons = new(); // Start is called before the first frame update private void Start() { instance = this; } // Update is called once per frame private void Update() { } } }