Sanguosha.Core.Games.PlayerExtension.AskForMultipleChoice C# (CSharp) Méthode

AskForMultipleChoice() public static méthode

询问多选题目,例如是否发动洛神
public static AskForMultipleChoice ( this p, Prompt prompt, List options, int &answer ) : bool
p this
prompt Sanguosha.Core.UI.Prompt
options List
answer int 回答
Résultat bool
        public static bool AskForMultipleChoice(this Player p, Prompt prompt, List<OptionPrompt> options, out int answer)
        {
            return Game.CurrentGame.UiProxies[p].AskForMultipleChoice(prompt, options, out answer);
        }