Esempio n. 1
0
 internal void DeAttachView(BattleElement battleElement)
 {
     AddNotify(new Notify_ElementExitState {
         Index = battleElement.Index
     });
     _AttachElements.Remove(battleElement.Index);
 }
Esempio n. 2
0
 internal void AttachView(BattleElement battleElement)
 {
     AddNotify(battleElement.GetInitNotify());
     AddNotify(new Notify_ElementJoinState {
         Index = battleElement.Index
     });
     _AttachElements.Add(battleElement.Index, battleElement);
 }