示例#1
0
 void Awake()
 {
     if (metricsView == null)
     {
         metricsView = this;
     }
     else if (metricsView != this)
     {
         Destroy(this);
     }
 }
示例#2
0
 void Awake()
 {
     if (metricsView == null) metricsView = this;
     else if (metricsView != this) Destroy(this);
 }
示例#3
0
 public void OnClickViewDetails()
 {
     SoundController.GetController().PlayClickSound();
     MetricsView.GetMetricsView().ShowDetailsOf(gameId);
 }