Example #1
0
 public override void Start()
 {
     if (_Instance == null)
     {
         _Instance = this;
     }
     base.Start();
 }
Example #2
0
 public override void OnDestroy()
 {
     if (_Instance == this)
     {
         _Instance = null;
     }
     base.OnDestroy();
 }
Example #3
0
 private void DataRefresh()
 {
     UITaskSystemController.UpdateTaskType();
     Bag_HasNewItem();
 }