rabidus-test/Assets/Scripts/GlobalSettings.cs

23 lines
410 B
C#
Raw Normal View History

2023-10-10 17:25:59 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GlobalSettings : MonoBehaviour
{
public static GlobalSettings Instance;
private void Awake()
{
if (Instance == null)
{
Instance = this;
}
else if (Instance != this)
2023-10-10 17:25:59 +03:00
{
Destroy(gameObject);
}
}
public bool AllMaps = false;
}