Arma Reforger Explorer
1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_HUDFreeSlot.c
Go to the documentation of this file.
1
class
SCR_HUDElement
2
{
3
protected
string
m_sParentWidgetName;
4
protected
Widget m_wSlotWidget;
5
protected
SCR_HUDLayout
m_ParentLayout;
6
7
//------------------------------------------------------------------------------------------------
8
string
GetParentWidgetName()
9
{
10
return
m_sParentWidgetName;
11
}
12
13
//------------------------------------------------------------------------------------------------
14
Widget GetWidget()
15
{
16
return
m_wSlotWidget;
17
}
18
19
//------------------------------------------------------------------------------------------------
20
void
SetParentWidgetName(
string
parentWidgetName)
21
{
22
m_sParentWidgetName = parentWidgetName;
23
}
24
25
//------------------------------------------------------------------------------------------------
26
void
SetWidget(notnull Widget widget)
27
{
28
m_wSlotWidget = widget;
29
}
30
31
//------------------------------------------------------------------------------------------------
32
SCR_HUDLayout
GetParentLayout()
33
{
34
return
m_ParentLayout;
35
}
36
37
//------------------------------------------------------------------------------------------------
38
void
SetParentLayout(notnull
SCR_HUDLayout
parentLayout)
39
{
40
m_ParentLayout = parentLayout;
41
}
42
}
SCR_HUDLayout
Definition:
SCR_HUDLayout.c:2
SCR_HUDElement
Definition:
SCR_HUDFreeSlot.c:1
scripts_Arma_Reforger_v1.1.0.42
scripts
Game
UI
HUD
SCR_HUDFreeSlot.c
Generated by
1.8.17