コード例 #1
0
 public static void RegisterDestoryEventTrigger(this EntityPool pool, IZSystem system)
 {
     pool.OnPreDestory += _ => system.Execute();
 }
コード例 #2
0
 public static void RegisterStartEventTrigger(this EntityPool pool, IZSystem system)
 {
     pool.OnStartEnd += _ => system.Execute();
 }