File size: 279 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
class NotificationData
{
string m_Icon;
string m_TitleText;
string m_DescriptionText;
void NotificationData(string icon, string title_text, string desc_text = "")
{
m_Icon = icon;
m_TitleText = title_text;
if (desc_text != "")
m_DescriptionText = desc_text;
}
}
|