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