Beispiel #1
0
 public Providers GetProviders()
 {
     if (providers == null)
     {
         initializing = true;
         Init();
         providers    = Providers.Build(this);
         initializing = false;
     }
     if (initializing)
     {
         Debug.LogError("Potential inheritance loop"); // TODO These shouldn't happen  anymore
     }
     return(providers);
 }