13 lines
250 B
C#
Raw Normal View History

2025-10-08 01:03:39 +05:00
using UnityEngine;
using System.Collections.Generic;
namespace ES3Internal
{
public class ES3DefaultSettings : MonoBehaviour
{
[SerializeField]
public ES3SerializableSettings settings = null;
public bool autoUpdateReferences = true;
}
}