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