Arma Reforger Explorer
1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Toggle main menu visibility
Loading...
Searching...
No Matches
WorkbenchDialogs.c
Go to the documentation of this file.
1
class
WorkbenchDialog_AbortRetryIgnore
2
{
4
int
m_iResult;
5
6
[
ButtonAttribute
(
"Abort"
)]
7
protected
int
ButtonAbort
()
8
{
9
m_iResult = 0;
10
return
m_iResult;
11
}
12
13
[
ButtonAttribute
(
"Retry"
,
true
)]
14
protected
int
ButtonRetry
()
15
{
16
m_iResult = 1;
17
return
m_iResult;
18
}
19
20
[
ButtonAttribute
(
"Ignore"
)]
21
protected
int
ButtonIgnore
()
22
{
23
m_iResult = 2;
24
return
m_iResult;
25
}
26
}
27
28
class
WorkbenchDialog_OKCancel
29
{
30
[
ButtonAttribute
(
"OK"
,
true
)]
31
protected
int
ButtonOK
()
32
{
33
return
1;
34
}
35
36
[
ButtonAttribute
(
"Cancel"
)]
37
protected
int
ButtonCancel
()
38
{
39
return
0;
40
}
41
}
ButtonCancel
bool ButtonCancel()
Definition
SCR_ImageSetGenerator.c:314
ButtonOK
bool ButtonOK()
Definition
SCR_ImageSetGenerator.c:307
ButtonAttribute
class WorkbenchDialog_AbortRetryIgnore ButtonAttribute("OK", true)
Definition
WorkbenchDialogs.c:30
WorkbenchDialog_AbortRetryIgnore
Definition
WorkbenchDialogs.c:2
WorkbenchDialog_AbortRetryIgnore::ButtonRetry
int ButtonRetry()
Definition
WorkbenchDialogs.c:14
WorkbenchDialog_AbortRetryIgnore::ButtonIgnore
int ButtonIgnore()
Definition
WorkbenchDialogs.c:21
WorkbenchDialog_AbortRetryIgnore::ButtonAbort
int ButtonAbort()
Definition
WorkbenchDialogs.c:7
scripts
WorkbenchGameCommon
WorkbenchDialogs.c
Generated by
1.17.0