Files

7 lines
102 B
C#
Raw Permalink Normal View History

namespace ChillConnect
{
public interface ISingleton
{
void OnSingletonInit();
}
}