Files
RedHotRoast-ios/Assets/Scripts/Singleton/ISingleton.cs
T

7 lines
100 B
C#
Raw Normal View History

namespace LoveLegend
2026-04-22 09:52:55 +08:00
{
public interface ISingleton
{
void OnSingletonInit();
}
}