Files
HauntedBloodlines/Assets/Scripts/Managers/GameSystemsManager.cs
2025-05-29 22:31:40 +03:00

25 lines
504 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameSystemsManager : MonoBehaviour
{
public GameObject Systems;
private static GameSystemsManager _instance;
public static GameSystemsManager GetInstance() { return _instance; }
private void Awake()
{
if (!_instance)
{
_instance = this;
}
}
//private void Start()
//{
// LoadController.GetInstance().gameSystems = Systems;
//}
}