Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_GameErrorMessage.c
Go to the documentation of this file.
1//------------------------------------------------------------------------------------------------
4{
5 protected string m_sMessage;
6 protected string m_sTitle;
7
8 //------------------------------------------------------------------------------------------------
9 string GetMessage()
10 {
11 return m_sMessage;
12 }
13
14 //------------------------------------------------------------------------------------------------
15 string GetTitle()
16 {
17 return m_sTitle;
18 }
19
20 //------------------------------------------------------------------------------------------------
21 void SCR_GameErrorMessage(string message, string title = "Error")
22 {
23 m_sMessage = message;
24 m_sTitle = title;
25 }
26};
void SCR_GameErrorMessage(string message, string title="Error")