private void UIBattleFormationKindSelectManagerActionCallBack(UIBattleFormationKindSelectManager.ActionType actionType, UIBattleFormationKindSelectManager calledObject, UIBattleFormationKind centerView) { calledObject.OnReleaseKeyController(); BattleFormationKinds1 iFormation = (actionType != 0) ? BattleFormationKinds1.TanJuu : centerView.Category; OnFormationSelected(iFormation); }
private void UIBattleFormationKindSelectManagerActionCallBack(UIBattleFormationKindSelectManager.ActionType actionType, UIBattleFormationKindSelectManager calledObject, UIBattleFormationKind centerView) { calledObject.OnReleaseKeyController(); BattleFormationKinds1 iFormation; if (actionType != UIBattleFormationKindSelectManager.ActionType.Select) { iFormation = BattleFormationKinds1.TanJuu; } else { iFormation = centerView.Category; } this.OnFormationSelected(iFormation); }