예제 #1
0
 // Token: 0x0600373E RID: 14142 RVA: 0x000F767C File Offset: 0x000F587C
 public void OnMyActorDie(BattleActor actor)
 {
     if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_OnMyActorDieBattleActor_hotfix != null)
     {
         this.m_OnMyActorDieBattleActor_hotfix.call(new object[]
         {
             this,
             actor
         });
         return;
     }
     BJLuaObjHelper.IsSkipLuaHotfix = false;
     if (!actor.IsSummoned())
     {
         this.m_deadActorCount++;
     }
     this.m_battle.OnActorDie(actor);
 }