Esempio n. 1
0
 public static void RegisterDestoryEventTrigger(this EntityPool pool, IZSystem system)
 {
     pool.OnPreDestory += _ => system.Execute();
 }
Esempio n. 2
0
 public static void RegisterStartEventTrigger(this EntityPool pool, IZSystem system)
 {
     pool.OnStartEnd += _ => system.Execute();
 }