Esempio n. 1
0
 public AlertData(string identifier, string message, bool isTwoButton, bool isInput, Alert.ButtonResult callback)
 {
     this.identifier  = identifier;
     this.message     = message;
     this.isTwoButton = isTwoButton;
     this.isInput     = isInput;
     this.callback    = callback;
 }
Esempio n. 2
0
 public void showAlert(string identifier, string message, bool isTwoButton, bool isInput, Alert.ButtonResult callback)
 {
     listAlert.Add(new AlertData(identifier, message, isTwoButton, isInput, callback));
     isShowAlert = true;
 }