DayZ Scripts
v1.21.156300 ยท Jun 20, 2023
 
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="")