Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_TutorialBuildingStartUserAction.c
Go to the documentation of this file.
1//------------------------------------------------------------------------------------------------
3{
4 protected bool m_bCanShow = true;
5
6 //------------------------------------------------------------------------------------------------
7 void SetCanShow(bool canShow)
8 {
9 m_bCanShow = canShow;
10 }
11
12 //------------------------------------------------------------------------------------------------
13 override bool CanBeShownScript(IEntity user)
14 {
15 if (!m_bCanShow)
16 return false;
17
18 return super.CanBeShownScript(user);
19 }
20}