Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
notificationdata.c
Go to the documentation of this file.
2{
3 string m_Icon;
4 string m_TitleText;
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}
void NotificationData(string icon, string title_text, string desc_text="")