19 lines
472 B
C#
Executable File
19 lines
472 B
C#
Executable File
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SettingsReader : MonoBehaviour
|
|
{
|
|
private static SettingsReader instance;
|
|
public static SettingsReader Instance { get { return instance; } }
|
|
|
|
private void Awake()
|
|
{
|
|
Debug.Log("init");
|
|
instance = this;
|
|
}
|
|
|
|
[SerializeField] private Settings gameSettings;
|
|
public Settings GetSettings { get { return gameSettings; } }
|
|
}
|