Example #1
0
 public static void Init()
 {
     if (_instance == null)
     {
         _instance = FindObjectOfType <DragParentsGUI>();
     }
 }
 public static InventoryOverSeerGUI GetInstance()
 {
     if (_instance == null)
     {
         _instance = FindObjectOfType <InventoryOverSeerGUI>();
         DragParentsGUI.Init();
         _instance.Init();
     }
     return(_instance);
 }