示例#1
0
 void Awake()
 {
     if (instance != null)
     {
         Debug.LogWarning("More than one instance of ChampionsManager found!");
         return;
     }
     instance = this;
     SetupChampions();
 }
示例#2
0
 private void Awake()
 {
     instance = this;
 }
示例#3
0
 void Awake()
 {
     championsManager_ = ChampionsManager.Instance;
 }