示例#1
0
 public static void AddLastBlockDestroyedEventInvoker(Block invoker)
 {
     lastBlockDestroyedEventInvokers.Add(invoker);
     foreach (UnityAction listener in lastBlockDestroyedEventListeners)
     {
         invoker.AddLastBlockDestroyedEventListener(listener);
     }
 }