private void RemoveListeners(PopUp_Methods functions) { functions.saveButton.GetComponent <PopupSave>().SaveButtonClicked -= OnSave; functions.cancelButton.GetComponent <PopupCancel>().CancelButtonClicked -= OnCancel; }
private void RemoveListeners(PopUp_Methods functions) { functions.saveButton.onClick.RemoveListener(OnSave); functions.cancelButton.onClick.RemoveListener(OnCancel); }
public void SetParent(PopUp_Methods parent) { this.parent = parent; }