示例#1
0
 public void Update(bool force)
 {
     if (force || IsReady)
     {
         CollectionReady?.Invoke(this, new CollectionReadyEventArgs());
     }
 }
示例#2
0
 internal void Ready()
 {
     IsReady = true;
     CollectionReady?.Invoke(this, new CollectionReadyEventArgs {
         JustReady = true
     });
 }
示例#3
0
 public void Update()
 {
     if (!IsReady)
     {
         return;
     }
     CollectionReady?.Invoke(this, new EventArgs());
 }