Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
notificationdata.c
Go to the documentation of this file.
2{
3 string m_Icon;
4 string m_TitleText;
5 string m_DescriptionText;
6
7 void NotificationData(string icon, string title_text, string desc_text = "")
8 {
9 m_Icon = icon;
10 m_TitleText = title_text;
11 if (desc_text != "")
12 m_DescriptionText = desc_text;
13 }
14}