1118OPSSNew/Assets/SKFramework/Core/Singleton/IMonoSingleton.cs

10 lines
200 B
C#

namespace SK.Framework
{
/// <summary>
/// Mono类型单例接口
/// </summary>
public interface IMonoSingleton : ISingleton
{
bool IsDontDestroyOnLoad { get; }
}
}