Example #1
0
 public CommonTipInstance(CommonTipID id, string message, Action confirmAction, Action cancelAction)
 {
     this.id            = id;
     this.message       = message;
     this.confirmAction = confirmAction;
     this.cancelAction  = cancelAction;
 }
Example #2
0
 public CommonTipInstance(CommonTipID id, string message)
 {
     this.id            = id;
     this.message       = message;
     this.confirmAction = null;
     this.cancelAction  = null;
 }