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

7 lines
98 B
C#
Raw Normal View History

2026-05-28 15:23:36 +08:00
namespace ZooMatch
{
public interface ISingleton
{
void OnSingletonInit();
}
}