예제 #1
0
 protected virtual void OnDestroys()
 {
     if (this.mBomberman != null)
     {
         this.mBomberman.DeInit();
         this.mBomberman = null;
     }
 }
예제 #2
0
 public void Start()
 {
     this.RegisterJoyEvent();
     if (GameLogic.Hold.BattleData.Challenge_BombermanEnable())
     {
         this.mBomberman = new AttackCtrl_Bomberman();
         this.mBomberman.Init(this.m_EntityHero);
     }
     this.OnStart();
 }