void OnDialogNextDataInvestigate() { mCurIndex++; if (mCurIndex == dataInvestigate.Length) { ModalDialog.CloseGeneric(); } else { ModalDialog.Open(null, dataInvestigate[mCurIndex], OnDialogNextDataInvestigate); } }
void OnDialogNextClose() { ModalDialog.CloseGeneric(); }