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.
19 lines
485 B
19 lines
485 B
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; |
|
} |
|
}
|
|
|