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