// MIT License - Copyright (c) 2025 wallstop // Full license text: https://github.com/wallstop/unity-helpers/blob/main/LICENSE namespace WallstopStudios.UnityHelpers.Core.Helper { /// /// Defines the singleton categories that can participate in auto-loading. /// public enum SingletonAutoLoadKind : byte { [System.Obsolete("Default uninitialized value - should never be used")] Unknown = 0, Runtime = 1, ScriptableObject = 2, } }