void Awake()
 {
     if (appController == null) appController = this;
     else if (appController != this) Destroy(gameObject);
     DontDestroyOnLoad(gameObject);
     appModel = new AppModel();
     //InitModelFromJsonInfo();
 }