rise-and-swine/Assets/Scripts/Assembly-CSharp/LevelUnloadNotifier.cs
2023-02-25 23:04:03 -05:00

20 lines
279 B
C#

using UnityEngine;
public class LevelUnloadNotifier : MonoBehaviour
{
private void Awake()
{
}
private void OnEnable()
{
}
private void OnDisable()
{
if (Singleton<GameManager>.Instance != null)
{
Singleton<GameManager>.Instance.OnLevelUnloading();
}
}
}