private void OnDestroy()
 {
     _Instance = null;
 }
 private void Awake()
 {
     _Instance = this;
 }
 public static ShortcutManager New()
 {
     _Instance = new GameObject("ShortcutManager").AddComponent <ShortcutManager>();
     return(_Instance);
 }