Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_ScenarioMenu.c
Go to the documentation of this file.
1 /*
2 Menu with a list view of scenarios.
3 */
5 {
6  protected SCR_InputButtonComponent m_NavBack;
7 
8  //-----------------------------------------------------------------------------------------------------------------
9  override void OnMenuOpen()
10  {
11  super.OnMenuOpen();
12 
13  // Find nav buttons
14  m_NavBack = m_DynamicFooter.FindButton("Back");
15 
16  if (m_NavBack)
17  m_NavBack.m_OnActivated.Insert(Close);
18  }
19 };
m_NavBack
enum EWorkshopTabId m_NavBack
The super menu class for WORKSHOP content browser.
SCR_ScenarioMenu
Definition: SCR_ScenarioMenu.c:4
SCR_SuperMenuBase
Definition: SCR_SuperMenuBase.c:6
SCR_InputButtonComponent
Definition: SCR_InputButtonComponent.c:1