notificationdata.c 279 B

1234567891011121314
  1. class NotificationData
  2. {
  3. string m_Icon;
  4. string m_TitleText;
  5. string m_DescriptionText;
  6. void NotificationData(string icon, string title_text, string desc_text = "")
  7. {
  8. m_Icon = icon;
  9. m_TitleText = title_text;
  10. if (desc_text != "")
  11. m_DescriptionText = desc_text;
  12. }
  13. }