SanAndreasUnity/Assets/Scripts/Utilities/ConfigManager.cs

14 lines
328 B
C#
Raw Normal View History

2021-01-26 22:29:01 +00:00
using UnityEngine;
namespace SanAndreasUnity.Utilities
{
// Note about script execution order: execute this script before others to make sure config is loaded before their Awake() is called.
public class ConfigManager : MonoBehaviour
{
void Awake()
{
Config.Load();
}
}
}