コード例 #1
0
 public IEnumerator <int> PromptForUserChoice(
     string question, string[] choices, string title = null, string styleOverride = null, int enterChoice = -1, int exitChoice = -1)
 {
     return(CoRoutine.Wrap <int>(
                PromptForUserChoiceInternal(question, choices, title, styleOverride, enterChoice, exitChoice)));
 }
コード例 #2
0
ファイル: UpmCommandHandler.cs プロジェクト: wyb314/Projeny
 public IEnumerator <T> ProcessPrjCommandForResult <T>(string statusName, IEnumerator prjTask)
 {
     return(CoRoutine.Wrap <T>(ProcessPrjCommand(statusName, prjTask)));
 }
コード例 #3
0
ファイル: PmDragDropHandler.cs プロジェクト: wyb314/Projeny
 IEnumerator <InstallReleaseUserChoices> CheckShouldInstall(ReleaseInfo releaseInfo)
 {
     return(CoRoutine.Wrap <InstallReleaseUserChoices>(CheckShouldInstallInternal(releaseInfo)));
 }