Ejemplo n.º 1
0
 public static void ShowConfirmationPopup(bool saveCurrentSelection, string msg, Action onConfirmation)
 {
     UIPopups.ShowConfirmationPopup(saveCurrentSelection, msg, onConfirmation);
 }
Ejemplo n.º 2
0
 public static void ShowIntSliderPopup(bool saveCurrentSelection, string title, int initialValue, int minValue, int maxValue, Action <bool, int> returnValue, Action <int> onValueChange)
 {
     UIPopups.ShowIntSliderPopup(saveCurrentSelection, title, initialValue, minValue, maxValue, returnValue, onValueChange);
 }
Ejemplo n.º 3
0
 public static void ShowSelectionPopup(bool saveCurrentSelection, string msg, string[] options, Action <bool, int> returnValue)
 {
     UIPopups.ShowSelectionPopup(saveCurrentSelection, msg, options, returnValue);
 }