You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
485 B
20 lines
485 B
1 year ago
|
using UnityEngine;
|
||
|
|
||
|
public class Main : MonoBehaviour
|
||
|
{
|
||
|
public static LocationSimulator LocationSimulator { get; private set; }
|
||
|
public static EventManager Event { get; set; }
|
||
|
|
||
|
private void Awake()
|
||
|
{
|
||
|
DontDestroyOnLoad(this);
|
||
|
LocationSimulator = GetComponentInChildren<LocationSimulator>();
|
||
|
Event = GetComponentInChildren<EventManager>();
|
||
|
}
|
||
|
private void OnDestroy()
|
||
|
{
|
||
|
Event = null;
|
||
|
LocationSimulator = null;
|
||
|
}
|
||
|
}
|