Files
PerfectTidy_untiy_ios/Assets/Scripts/Singleton/ISingleton.cs
T

7 lines
100 B
C#
Raw Normal View History

2026-06-12 10:11:36 +08:00
namespace LoveLegend
{
public interface ISingleton
{
void OnSingletonInit();
}
}