Files
ZooMatch-GP/Assets/Scripts/Singleton/ISingleton.cs
T

7 lines
112 B
C#
Raw Normal View History

2026-06-02 10:26:44 +08:00
namespace BallKingdomCrush
{
public interface ISingleton
{
void OnSingletonInit();
}
}