Arma Reforger Explorer
1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_GameErrorMessage.c
Go to the documentation of this file.
1
//------------------------------------------------------------------------------------------------
3
class
SCR_GameErrorMessage
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
};
SCR_GameErrorMessage
Wrapper for error messages.
Definition:
SCR_GameErrorMessage.c:3
scripts_Arma_Reforger_v1.1.0.42
scripts
Game
Utilities
SCR_GameErrorMessage.c
Generated by
1.8.17