Files
2026-05-28 13:53:12 +08:00

7 lines
105 B
C#

namespace BingoBrain.Core
{
public interface ISingleton
{
void OnSingletonInit();
}
}