コード例 #1
0
 public void ApplyBeat()
 {
     beatListeners.RemoveAll(b => b.owner == null);
     beatListeners.ForEach(b => b.NotifyBegin());
     currentMobManager.MakeMobsActions();
     beatListeners.ForEach(b => b.NotifyEnd());
 }