Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_CommandingMenuEntry.c
Go to the documentation of this file.
1 //------------------------------------------------------------------------------------------------
2 class SCR_CommandingMenuEntry : ScriptedSelectionMenuEntry
3 {
4  protected string m_sCommandName;
5 
6  //------------------------------------------------------------------------------------------------
7  void SetCommandName(string commandName)
8  {
9  m_sCommandName = commandName;
10  }
11 
12  //------------------------------------------------------------------------------------------------
13  string GetCommandName()
14  {
15  return m_sCommandName;
16  }
17 }
SCR_CommandingMenuEntry
Definition: SCR_CommandingMenuEntry.c:2