Ejemplo n.º 1
0
 public PopupData(PopupType type, string title, string text, Manager.Callback onOk = null, Manager.Callback onCancel = null) : base()
 {
     this.title    = title;
     this.text     = text;
     this.type     = type;
     this.onOk     = onOk;
     this.onCancel = onCancel;
 }
Ejemplo n.º 2
0
 public PopupWithImageData(PopupType type, string text, Manager.Callback onOk = null, Manager.Callback onCancel = null) : base(type, text, onOk, onCancel)
 {
 }
Ejemplo n.º 3
0
 public PopupData(PopupType type, string text, Manager.Callback onOk = null, Manager.Callback onCancel = null)
     : this(type, "NOTICE", text, onOk, onCancel)
 {
 }