Example #1
0
 public AlertBuilder(HabboAlertType type, string message)
 {
     _alert = new HabboAlert
     {
         Type    = type,
         Message = message
     };
 }
Example #2
0
 public HabboAlert(string title, string message, HabboAlertType type, string url, string image, string urlTitle)
 {
     Title    = title;
     Message  = message;
     Type     = type;
     Url      = url;
     Image    = image;
     UrlTitle = urlTitle;
 }
Example #3
0
 public static AlertBuilder CreateAlert(HabboAlertType type, string message) => new AlertBuilder(type, message);