internal void localAwake()
 {
     if ((bool)Instance)
     {
         Destroy(this);
         return;
     }
     Instance = this;
 }
 private void OnDestroy()
 {
     Instance = null;
 }