This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
2023-06-01 08:03:48 -07:00

21 lines
433 B
C#

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