void Awake()
 {
     SettingsManager.Initialize();
     OrientationHelper.InitLandscapeSupportAndroid();
     if (current)
     {
         DestroyImmediate(gameObject);
     }
     else
     {
         DontDestroyOnLoad(gameObject);
         current = this;
     }
 }