mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-27 06:20:17 +00:00
14 lines
328 B
C#
14 lines
328 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|